forEachめも
'use strict';
{
const scores = [10, 20, 30, 40 ];
scores.forEach((score, index) =>{
console.log(`Score: ${index}:${score}`);
});
}
Score: 0:10
Score: 1:20
Score: 2:30
Score: 3:40
あるだけブン回すみたいな感じか。
pythonのときはforEachなかったような...と思ったら、pythonではfor文で同じような動きができたんだった。すぐ忘れちゃうね💦