javascript array foreacg code example
Example 1: js for each item in array
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
// expected output: "a"
// expected output: "b"
// expected output: "c"
Example 2: javascript forEach loop array
array.forEach(function calback(item, index, array)
{
/* working codes here */
});