ES6 - 数组方法 map()



map() 方法创建一个新数组,其中包含对该数组中每个元素调用提供的函数的结果。

语法

array.map(callback[, thisObject]);   

参数

  • callback − 从当前数组中的元素生成新数组元素的函数。

  • thisObject − 在执行回调时用作 this 的对象。

返回值

返回创建的数组。

示例

var numbers = [1, 4, 9]; 
var roots = numbers.map(Math.sqrt); 
console.log("roots is : " + roots );    

输出

roots is : 1,2,3 
广告