学習忘備録(Javascript : 繰り返し)
代入演算子
i = i + 1;
i += 1;
i++; ← 1の時のみ
■ 条件が続く限り繰り返す
while (継続条件) {
実行文
}
■ 指定回数繰り返す
for (初期値;継続条件;最終値とか式){
実行文
}
■ 指定回数逆に繰り返す
for (let cnt = 10; cnt > 0; cnt--){
console.log(cnt + '回目');
}
■ 九九
[code]for (let y = 1; y <= 9; y++) {
console.log('■ ' + y + 'の段---------')
for (let x = 1; x <= 9; x++) {
console.log(y + ' × ' + x + ' = ' + x * y);
}
}[/code]