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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。