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 3 years have passed since last update.

ループの処理について

Last updated at Posted at 2021-05-19

#目次
①for文について
②for...in文について
③for...ofについて

###①for文について

const array =[1,2,3,4,5,6];

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

//iに0を代入して、array.lengthで配列の長さを取得している。今回の場合は、配列の長さは6になるので、
//i<6になる。一回の処理が終了したら、 i++(i = i + 1;という意味) iに1が追加され、同じ処理が5回繰り返される。

###②for...in文について


 const array= [1,2,3,4,5,6];

 for(let i in array){
   console.log(array[i])
}

// 配列のインデックスを取得することができる。

###③for...of文について


const array = [1,2,3,4,5,6];

for(let v of array){
  console.log(v);
}

//配列の要素が順番に取得できるようになる
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?