노트 # 20 | 반복문 for... of 문

HyeonWooGa·2022년 7월 7일
0

노트

목록 보기
21/74

반복문 for...of 문

개요

  • 반복가능한 객체(Array, Map, Set, String, TypeArray, Object 등)에 대해 반복하여 각 개별 속성값들을 탐색합니다.

사용 예시

const arr = ['a', 'b', 'c', 'd'];

for (const el of arr) {
  console.log(el);
}

// expected output: "a"
// expected output: "b"
// expected output: "c"
profile
Aim for the TOP, Developer

0개의 댓글