为水果中的每个元素调用一个函数:
const fruits = ["apple", "orange", "cherry"];
fruits.forEach(myFunction);
亲自试一试 »
这个forEach()
方法为数组中的每个元素调用一个函数。
这个forEach()
方法不会对空元素执行。
array.forEach(
function(currentValue, index, arr), thisValue)
function() | Required. A function to run for each array element. |
currentValue | Required. The value of the current element. |
index | Optional. The index of the current element. |
arr | Optional. The array of the current element. |
thisValue | Optional. Default undefined .A value passed to the function as its this value. |
不明确的 |
计算总和:
let sum = 0;
const numbers = [65, 44, 12, 4];
numbers.forEach(myFunction);
function myFunction(item) {
sum += item;
}
亲自试一试 »
将每个元素相乘:
const numbers = [65, 44, 12, 4];
numbers.forEach(myFunction)
function myFunction(item, index, arr) {
arr[index] = item * 10;
}
亲自试一试 »
forEach()
是 ECMAScript5 (ES5) 功能。
所有浏览器完全支持 ES5 (JavaScript 2009):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 9-11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!