js foreachloop code example
Example 1: foreach javascript
let words = ['one', 'two', 'three', 'four'];
words.forEach((word) => {
console.log(word);
});
// one
// two
// three
// four
Example 2: foreach javascript
Used to execute the same code on every element in an array
Does not change the array
Returns undefined