forEach() 方法為數組中的每個元素調用一個函數。
用法
array.forEach(callback[, thisObject]);
參數詳情
callback− 測試每個元素的函數。
thisObject- 執行回調時用作 this 的對象。
返回值
返回創建的數組。
示例
let num = [7, 8, 9];
num.forEach(function (value) {
console.log(value);
});
在編譯時,它將生成以下 JavaScript 代碼 -
var num = [7, 8, 9];
num.forEach(function (value) {
console.log(value);
});
其輸出如下 -
7 8 9
相關用法
- TypeScript Array filter()用法及代碼示例
- TypeScript Array map()用法及代碼示例
- 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 sort()用法及代碼示例
- TypeScript Array reduceRight()用法及代碼示例
- TypeScript Array every()用法及代碼示例
- TypeScript Array some()用法及代碼示例
注:本文由純淨天空篩選整理自 TypeScript - Array forEach()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。