Node.js forEach()函数
forEach()是来自 Node.js 的数组函数,用于迭代给定数组中的项目。
句法:
array_name.forEach(function)
参数:此函数将一个函数(将要执行)作为参数。
返回类型:函数迭代后返回数组元素。
下面的程序演示了该函数的工作:
方案一:
const arr = ['cat', 'dog', 'fish'];
arr.forEach(element => {
console.log(element);
});
输出:
cat
dog
fish
方案二:
const arr = [1, 2, 3, 8, 7];
arr.forEach(element => {
console.log(element);
});
输出:
1
2
3
8
7