for문과 forEach 메서드

오주형·2022년 10월 2일
0
const numbers = [1, 2, 3];
const pows = [];

for (let i = 0; i < numbers.length; i++) {
  pows.push(numbers[i] ** 2);
}

console.log(pows) // [1, 4, 9]
  • for 문으로 구현된 위 예제를 forEach 메서드로 구현하면 다음과 같다.
const numbers = [1, 2, 3];
const pows = [];

numbers.forEach(item => pows.push(item ** 2));
console.log(pows) // [1, 4, 9]
profile
곧 개발자

0개의 댓글