【週刊ドットインストール】 JavaScriptのコラム追加、サブスク管理アプリを更新中、レッスン制作の進捗
「getElementByIdの括弧の中に書くのはtarget?、それとも'target'?」がわかるようになるコラム(もしくはMDNの読み解き方)
'use strict'; const scores=[1,3,5,6]; scores.forEach(score=>{ console.log(score); });
と↓の違いは何ですか
'use strict'; const scores=[1,3,5,6]; scores.forEach(score=>{ console.log(`${score}`); });
この回答を見るにはプレミアムプランへの登録が必要です