2023-04-09から1日間の記事一覧
const fun = () => {}; fun?.(console.log('hoge')); ↑この時は console.log('hoge') が評価され、ログに hoge と表示される。 const notFun = undefined; notFun?.(console.log('hoge')); ↑この時 console.log('hoge') は評価されない。つまりログにも hoge…
const fun = () => {}; fun?.(console.log('hoge')); ↑この時は console.log('hoge') が評価され、ログに hoge と表示される。 const notFun = undefined; notFun?.(console.log('hoge')); ↑この時 console.log('hoge') は評価されない。つまりログにも hoge…