0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【JavaScript】反復処理② for【自己学習】

Last updated at Posted at 2019-03-24

##forでできること
条件式がtrueの間、処理を繰り返すwhileやdo...whileに対し、forは指定した回数だけ処理を繰り返すことができる。

##forの書き方

for-1.js
for (let i = 1; i < 4; i++) {
  console.log(`${i}回目の反復です`);
}

//コンソール
//1回目の反復です
//2回目の反復です
//3回目の反復です

反復処理を実行するにあたり、for()内に下記3つの式を左から順に記述する。

① 初期変数(let i = 1
② 条件式(i < 4)
③ 変数の更新(i++)

3つの式はそれぞれセミコロン(;)で区切る。また、①〜③の式はカンマ(,)を使うことで複数の式を記述することもできる。

for-2.js
for (let i = 1, x = 1; i < 4; i++, x++) {
  console.log(`${i}×${x}${i * x}です`);
}

//コンソール
//1×1は1です
//2×2は4です
//3×3は9です

上記のコードでは①と③をカンマを使って2つずつ定義している。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?