#map
Read more stories on Hashnode
Articles with this tag
Map 메서드 타입 정의하기 자바스크립트의 배열 메서드 Map은 다음과 같이 원본 배열의 각 요소에 콜백함수를 수행하고 반환된 값들을 모아 새로운 배열로 만들어 반환한다. const arr = [1, 2, 3]; const newArr = arr.map((it) =>...