javascript arrat foreach code example
Example 1: for each javascript
let numbers = ['one', 'two', 'three', 'four'];
numbers.forEach((num) => {
console.log(num);
}); // 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