for...of for...of 명령문은 반복가능한 객체 (Array, Map, Set, String, TypedArray, arguments 객체 등을 포함)에 대해서 반복 const number = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]; for (const n of number) { if (n === "3") { break; //이런식으로 for문을 멈출 수 있음 } else { console.log(n); } } //output 1 2