JavaScript基礎-ループ-

2023-04-03

const ary = [1,2,3,4,5];

for(let i = 0; i < ary.length; i++) {
ary[i];
}

for(初期化; 条件; ループ時にかかる処理) {
任意の処理
}

条件にはメソッド等を指定することで汎用的な使い方が可能

日記

Posted by シキ