Array.map()是內置的TypeScript函數,用於創建新數組,並在此數組的每個元素上調用提供的函數。
用法:
array.map(callback[, thisObject])
參數:此方法接受上麵提到和下麵描述的兩個參數:
- callback:此參數是從當前元素的元素生成新Array元素的函數。
- thisObject:此參數是執行回調時用作此對象的Object。
返回值:此方法返回創建的數組。
下麵的示例說明TypeScript中的Array map()方法。示例1:
的JavaScript
<script>
// Driver code
var arr = [ 11, 89, 23, 7, 98 ];
// use of map() method
var val = arr.map(Math.log)
// printing element
console.log( val );
</script>
輸出:
[ 2.3978952727983707, 4.48863636973214, 3.1354942159291497, 1.9459101490553132, 4.584967478670572 ]
範例2:
的JavaScript
<script>
// Driver code
var arr = [2, 5, 6, 3, 8, 9];
// use of map() method
var newArr = arr.map(function(val, index){
// printing element
console.log("key:",index, "value:",val*val);
})
</script>
輸出:
key: 0 value: 4 key: 1 value: 25 key: 2 value: 36 key: 3 value: 9 key: 4 value: 64 key: 5 value: 81
相關用法
- Typescript Array unshift()用法及代碼示例
- Typescript Array toString()用法及代碼示例
- Typescript Array splice()用法及代碼示例
- Typescript Array sort()用法及代碼示例
- Typescript Array some()用法及代碼示例
- Typescript Array slice()用法及代碼示例
- Typescript Array shift()用法及代碼示例
- Typescript Array reverse()用法及代碼示例
- Typescript Array reduceRight()用法及代碼示例
- Typescript Array reduce()用法及代碼示例
- Typescript Array push()用法及代碼示例
- Typescript Array pop()用法及代碼示例
- Typescript Array lastIndexOf()用法及代碼示例
- Typescript Array join()用法及代碼示例
- Typescript Array indexOf()用法及代碼示例
- Typescript Array forEach()用法及代碼示例
- Typescript Array filter()用法及代碼示例
- Typescript Array every()用法及代碼示例
- Typescript Array concat()用法及代碼示例
- Typescript toExponential()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | Array map() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。