javascript foreach with index example
Example 1: javascript foreach index
users.forEach((user, index)=>{
console.log(index);
});
Example 2: foreach in javascript
var a = ["a", "b", "c"];
a.forEach(function(entry) {
console.log(entry);
});
var fruits = ["apple", "orange", "cherry"];
fruits.forEach(myFunction);
function myFunction(item, index) {
document.getElementById("demo").innerHTML += index + ":" + item + "<br>";
}
Example 3: js get index from foreach
var myArray = [123, 15, 187, 32];
myArray.forEach(function (value, i) {
console.log('%d: %s', i, value);
});
Example 4: how to use the foreach method in javascript
groceries.forEach(groceryItem => console.log(groceryItem));