index on a for each loop javascript code example
Example 1: foreach javascript
let words = ['one', 'two', 'three', 'four'];
words.forEach((word) => {
console.log(word);
});
// one
// two
// three
// four
Example 2: javascript foreach index
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});