JS - Array.prototype.map() 구현하기
map() 메서드는 배열 내의 모든 요소 각각에 대하여 주어진 함수를 호출한 결과를 모아 새로운 배열을 반환합니다. - mdn const array1 = [1, 4, 9, 16]; // pass a function to map const map1 = array1.map(x => x * 2); console.log(map1); // expected output: Array [2, 8, 18, 32] 다음과 같이 배열의 요소 하나하나에 원하는 함수를 넣어서 그 결과로 새로운 배열을 만드는 map 함수를 직접 구현해보겠습니다. const arr = [1,2,3,4,5]; 먼저 임의의 배열을 먼저 추가해줍니다. Array.prototype.map2 = function(callback) { return null;..