array.slice(0).forEach vs array.forEach code example
Example 1: javascript foreach
var colors = ['red', 'blue', 'green'];
colors.forEach(function(color) {
console.log(color);
});
Example 2: how to use the foreach method in javascript
groceries.forEach(groceryItem => console.log(groceryItem));