https://www.w3schools.com/jsref/jsref_map.asp

 

JavaScript Array map() Method

JavaScript Array map() Method ❮ JavaScript Array Reference Example Return an array with the square root of all the values in the original array: var numbers = [4, 9, 16, 25]; var x = numbers.map(Math.sqrt) document.getElementById("demo").innerHTML = x; The

www.w3schools.com

Array의 각 요소를 반복하면서 콜백함수를 실행합니다. 

return 되는값은 배열로 만들어집니다.

 

화살표함수까지 같이 사용한다 numbers를 라는 배열을 반복하면서 새로운 newNumbers라는 배열을 생성한다.
가장 기초적인 활용법

 

'JavaScript > Vanilla JS' 카테고리의 다른 글

Math.floor와 Math.random을 이용한 랜덤숫자 뽑기  (0) 2020.04.01
document.title  (0) 2020.02.04
setInterval(), setTimeout()  (0) 2019.07.29
String 이어붙이기  (0) 2017.09.29
산술연산자 & 관계연산자  (0) 2017.09.29