JavaScript para each
const avengers = ['thor', 'captain america', 'hulk'];
avengers.forEach((item, index)=>{
console.log(index, item)
})
connect.sonveer
const avengers = ['thor', 'captain america', 'hulk'];
avengers.forEach((item, index)=>{
console.log(index, item)
})
var colors = ['red', 'blue', 'green'];
colors.forEach(function(color) {
console.log(color);
});
var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
arr.forEach(function(element){
console.log(element);
})
users.forEach((user, index)=>{
console.log(index); // Prints the index at which the loop is currently at
});
const iterable = [...];
for (const [index, elem] in iterable.entries()) {
f(index, elem);
}
// or
iterable.forEach((elem, index) => {
f(index, elem);
});
const array = ['Element_1', 'Element_2', 'Element_3']
array.forEach((currentElement, currentElementIndex, arrayOfCurrentElement) => {
console.log(currentElement, currentElementIndex, arrayOfCurrentElement)
})