const superheroes = [ '아이언맨', '캡틴 아메리카','토르','닥터스트레인지' ]; function print(hero){ console.log(hero); } superheroes.forEach(print); superheroes.forEach((hero)=>{ console.log(hero); }) forEach함수 배열 안의 값을 하나씩 다 출력하기 map 배열에 있는 내용을 전체적으로 변화를 주고 싶을 때 const array = [1,2,3,4,5,6,7,8]; const square = n => n*n; const squared = array.map(square); console.log(squared); array배열의 안의 값들을 전부 제곱해서 새로운 배열로 만들어라 co..