numeração de foreach em expressjs
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});
Concerned Chipmunk
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});