맵 - 배열 함수
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]
Syntax :
let new_array = arr.map(function callback( currentValue[, index[, array]]) {
// return element for new_array
}[, thisArg])
callback - a required function which takes in currentValue, index, the array as parameters
currentValue - required parameter. This is the current value of the item in the array
index - optional parameter. This is the index of the item that is selected
array - optional parameter. This is the array on which map function gets executed.
map 함수는 배열의 각 항목에 대해 호출되어 결과가 요구 사항에 따라 새로 처리된 항목으로 반환됩니다.
숫자 배열을 제곱근 배열에 매핑
let numbers = [1, 4, 9]
let sum = numbers.map(function(num) {
let add = 5;
add += num
return add;
})
// sum is now [6, 9, 14]
// numbers is still [1, 4, 9]
map 함수를 사용하여 배열의 객체 재포맷
let kvArray = [{key: 1, value: 10},
{key: 2, value: 20},
{key: 3, value: 30}]
let reformattedArray = kvArray.map(obj => {
let rObj = {}
rObj[obj.key] = obj.value
return rObj
})
// reformattedArray is now [{1: 10}, {2: 20}, {3: 30}],
// kvArray is still:
// [{key: 1, value: 10},
// {key: 2, value: 20},
// {key: 3, value: 30}]
매핑된 배열에 정의되지 않은 항목이 포함되어 있습니다.
let arr = ["We", "Are", "Bros", 4]
let filteredArr = numbers.map(function(item, index) {
if (index < 3) {
return item
}
})
// index goes from 0, so the filterNumbers are 1,2,3 and undefined.
// filteredArr is ["We", "Are", "Bros", undefined]
// numbers is still ["We", "Are", "Bros", 4]
Reference
이 문제에 관하여(맵 - 배열 함수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/iamashusahoo/map-array-function-3jld텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)