javascript each do code example
Example: javascript foreach index
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});