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

javascript学習備忘録 for文

Posted at

フロントエンドエンジニアになって約半年ほど。。
普段はVue.jsを使って開発しています。
フレームワークを使って開発を行っていく上でどうしてもJavaScriptを書かないといけないことが増えてきました。
その学習したことを備忘録として残していきます。
今回はfor文

for文

for(初期化式;条件処理;増減式++){}
基本的にはこの形で書いていく

例文1

for (let i = 0; i <= 10; i++) {
  console.log("hello world");
}

出力結果はhello worldが10回繰り返されます。
これは簡単。

例文2

for (let i = 0; i < 10; i++) {
  console.log("hello world");
  for (let j = 0; j < 3; j++) {
    console.log("hello earth");
  }
}

次の例文ではforの中にforをネストした書き方となる。
出力結果はherro worldと1回表示されその後hello earthが3回表示される。

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?