how to get index of item in foreach javascript code example
Example 1: javascript foreach example
var colors = ["red", "blue", "green"];
colors.forEach(function(color) {
console.log(color);
});
Example 2: forEach index
const array1 = ['a', 'b', 'c'];
array1.forEach((element, index) => console.log(element, index));