map in JS
768 단어 JavaScriptMapJavaScript
map
map함수는 callbackFunction을 실행한 결과를 가지고 새로운 배열을 만들 때 사용한다. 아래 세개의 코드는 실질적으로 같은 의미의 코드이고 같은 결과를 반환한다.
array.map(callbackFunction(currenValue, index, array), thisArg)
const arr = [1, 2, 3, 4];
var ans = arr.map(elem => elem*2)
console.log(ans)
const arr = [1, 2, 3, 4];
var myFunction = (value) => {return value*2}
var res = arr.map(myFunction)
console.log(res);
const arr = [1, 2, 3, 4];
var res = arr.map(function(number) {
return number*2;
})
console.log(res)
result
[ 2, 4, 6, 8 ]
Author And Source
이 문제에 관하여(map in JS), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@woodstock1993/map-in-JS저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)