JavaScript#6-for...of 文
今日は、for…of文について学びました。
学習で作成したコードは、次のとおりです。
const arry = [10, "文字列", 20, true, 23, 47];
sum = 0;
for(const value of arry){
if(typeof value == "number"){
sum += value;
}
}
console.log(sum);
今日は、for…of文について学びました。
学習で作成したコードは、次のとおりです。
const arry = [10, "文字列", 20, true, 23, 47];
sum = 0;
for(const value of arry){
if(typeof value == "number"){
sum += value;
}
}
console.log(sum);