배열을 반복하면서 배열의 값을 뽑을 때 사용
const colors = ["red", "green", "blue"]; for(let color of colors){ console.log(color); } // "red", "green", "blue" 가 출력됨