0
1

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 1 year has passed since last update.

JavaScript 繰り返し処理

Posted at

初学者の備忘録

初学者の備忘録です。今回は繰り返し処理基礎編でfor文を使用します。

繰り返し処理

条件式に一致するまで処理を繰り返すことです。for文を使用して基礎を記録していきます。

for文基本形

// 変数greetingを作成、変数の値を文字列の"Hello world"とする
let greeting = "Hello world";
// 変数iを作成し、初期値を0(let i = 0;)iが5より少ない場合は繰り返し処理を実行(i < 5;)iの値を1ずつプラスしていく(i++)
for (let i = 0; i < 5; i++) {
  console.log(greeting);
}

コメントが少し長くなりましたが、上記のコードが繰り返し処理の基本形となります。

最後

繰り返し処理も使用頻度、応用度ともに高いのでしっかり勉強して、基礎をしっかり学んでいきましょう。
今回は短いですが以上で繰り返し処理編、終了です。お疲れ様でした。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?