Node.js forEach

Node.js forEach用于为每个元素执行提供的功能。

语法– forEach

forEach的语法为;

let arr = [element1, element2, elementN]; 
arr.forEach(myFunction(element, index, array, this){ function body });

myFunction函数对每个执行element在arr。element在每次迭代期间,数组的of作为参数传递给函数。

示例1:元素数组上的forEach

在此示例中,我们将使用forEach应用于数组的每个元素。

let array1 = ['a1', 'b1', 'c1']; 
array1.forEach(function(element) { 
  console.log(element); 
 });

输出结果

a1
b1
c1

示例2:forEach元素数组上具有作为参数传递的外部函数

在此示例中,我们将使用forEach应用于数组的每个元素。然后,我们分别定义函数并将其作为参数传递给forEach。

let array1 = ['a1', 'b1', 'c1'] 
let myFunc = function(element) { 
  console.log(element) 
 } 
array1.forEach(myFunc)

示例3:可以访问元素,索引和数组的数组上的forEach

在此示例中,我们将在每次迭代中访问索引和数组以及元素。

let array1 = ['a1', 'b1', 'c1'] 
 
let myFunc = function(element, index, array) { 
  console.log(index + ' : ' + element + ' - ' + array[index]) 
 } 
 
array1.forEach(myFunc)

输出结果

0 : a1 - a1
1 : b1 - b1
2 : c1 - c1