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
相关用法
- TypeScript Array forEach()用法及代码示例
- TypeScript Array indexOf()用法及代码示例
- TypeScript Array unshift()用法及代码示例
- TypeScript Array reduce()用法及代码示例
- TypeScript Array slice()用法及代码示例
- TypeScript Array splice()用法及代码示例
- TypeScript Array lastIndexOf()用法及代码示例
- TypeScript Array push()用法及代码示例
- TypeScript Array join()用法及代码示例
- TypeScript Array filter()用法及代码示例
- TypeScript Array sort()用法及代码示例
- TypeScript Array reduceRight()用法及代码示例
- TypeScript Array every()用法及代码示例
- TypeScript Array some()用法及代码示例
注:本文由纯净天空筛选整理自 TypeScript - Array map()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。