for each javasacript code example
Example 1: for each js
const fruits = ['mango', 'papaya', 'pineapple', 'apple'];
// Iterate over fruits below
// Normal way
fruits.forEach(function(fruit){
console.log('I want to eat a ' + fruit)
});
Example 2: how to use the foreach method in javascript
groceries.forEach(groceryItem => console.log(groceryItem));
Example 3: foreach javascript
Used to execute the same code on every element in an array
Does not change the array
Returns undefined