array.prototype.foreach javascript code example
Example 1: js for each item do
let array = ['Item 1', 'Item 2', 'Item 3'];
array.forEach(item => {
console.log(item); // Logs each 'Item #'
});
Example 2: foreach javascript
Used to execute the same code on every element in an array
Does not change the array
Returns undefined