【週刊ドットインストール】 AI関連レッスンの第三弾をリリース、言語ごとのロードマップページを制作中
'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}`); });
この回答を見るにはプレミアムプランへの登録が必要です