for...of

for...of 명령문 반복가능한 객체 (Array, Map, Set, String, TypedArray, arguments 객체 등을 포함)에 대해서 반복하고 각 개별 속성값에 대해 실행되는 문이 있는 사용자 정의 반복 후크를 호출하는 루프를 생성합니다.

ex)

const array1 = ['a', 'b', 'c'];

for (const element of array1) {
  console.log(element);
}

// expected output: "a"
// expected output: "b"
// expected output: "c"

 

> "a"

> "b"

> "c"

 

구문

    for (variable of iterable) {
      statement
    }
variable
각 반복에 서로 다른 속성값이 variable에 할당됩니다.

iterable

반복되는 열거가능(enumerable)한 속성이 있는 객체.

 

+ Recent posts