私メタボックル!お腹のお肉の妖精さ!
本日の人気ページ
昨日の人気ページ
102
//for (変数定義;forから抜ける条件;ステップごとの変数の変更内容) for (let num = 1;num <= 100;num += 1){ console.log(num); }
let num = 1; while (num <= 100){ console.log(num); num += 1; }