how to do operations with foreach javascript code example
Example 1: 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>";
}
Example 2: javascript foreach syntax
const marks = [12, 17, 14];
let sum = 0;
marks.forEach(mark => {
sum += mark;
});