Array.forEach()
forEach() 方法为每个数组元素调用一次函数(回调函数)。
实例
const numbers = [45, 4, 9, 16, 25];
let txt = "";
numbers.forEach(myFunction);
function myFunction(value, index, array) {
txt += value;
}
亲自试一试
请注意,该函数采用 3 个参数:
项目值
项目索引
数组本身
上面的例子仅使用 value 参数。可以改写为:
实例
const numbers = [45, 4, 9, 16, 25];
let txt = "";
numbers.forEach(myFunction);
function myFunction(value) {
txt += value;
}