07-2. 배열내장 함수(forEach)
배열내장 함수
forEach
const superheroes = ['아이언맨', '캡틴 아메리카', '토르', '닥터 스트레인지'];const superheroes = ['아이언맨', '캡틴 아메리카', '토르', '닥터 스트레인지'];
for (let i = 0; i < superheroes.length; i++) {
console.log(superheroes[i]);
}// 결과)
아이언맨
캡틴 아메리카
토르
닥터 스트레인지Last updated