-
map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值
-
map() 方法按照原始数组元素顺序依次处理元素
-
map() 不会对空数组进行检测
-
map() 不会改变原始数组
语法:
array.map(function(currentValue,index,arr), thisValue)参数说明
| 参数 |描述 | | --- | ---| | | function(currentValue, index,arr)| 必须。函数,数组中的每个元素都会执行这个函数| ||currentValue:必须。当前元素的值 | ||index:可选。当前元素的索引值 | ||arr:可选。当前元素所属数组对象 | | | | | |thisValue|可选。对象作为该执行回调时使用,传递给函数,用作 "this" 的值。如果省略了 thisValue,或者传入 null、undefined,那么回调函数的 this 为全局对象。| |返回值|返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值|
例子:
let arr = [1,2,3,4,5];
let newArr = arr.map(function(n){
return n * 2;
})
console.log(newArr);//2,4,6,8,10