TypeScript 数组 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 );
在编译时,它将通过JavaScript生成相同的代码。
其输出如下 −
roots is : 1,2,3