w3schools javascript foreach 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 in javascript
///Simple One
var a = ["a", "b", "c"];
a.forEach(function(entry) {
console.log(entry);
});
///Function concept
var fruits = ["apple", "orange", "cherry"];
fruits.forEach(myFunction);
function myFunction(item, index) {
document.getElementById("demo").innerHTML += index + ":" + item + "<br>";
}