배열 반복문 for

let days = ['', '', ''];

for(let index = 0; index < days.length; index++){
    console.log(days[index]); // 월 / 화 / 수
}


배열 반복문 for in

for(let d of days){
    days[1] = 'tue'; // 이렇게 수정도 가능함
    console.log(d); // 월 / tue / 수
}

for문보다 간단하지만 index를 못 얻는다는 단점이 있다.

댓글남기기