
The difference arises when examining the return value of these methods. All of these methods iterate through an array in the same way, applying a function to each element in the array in-order. There are a couple critical differences between forEach() and the other functions.

JavaScript provides a number of iteration methods – forEach(), map(), filter(), and reduce(). In the code above, console.log() is invoked for each element in the array. The method is called on the array object that you wish to manipulate, and the function to call is provided as an argument.

The forEach() method executes a function once for each item in the array. Note: This example uses abbreviated syntax, a more complex version is exemplified below.

The following code demonstrates how to print all of the items in an array using forEach() const arr = It was introduced in ECMAScript 5 (ES5), and is supported in all modern browsers. ForEach() is an iteration method, and it is mainly used for the serial execution of functionality against a list of elements.Īrray forEach() is a method included in the Array.prototype property.
