get index of for loop javascript code example
Example 1: for of get index
for (const v of ['a', 'b', 'c']) {
console.log(v)
}
// get index
for (const [i, v] of ['a', 'b', 'c'].entries()) {
console.log(i, v)
}
Example 2: javascript enumerate with index
const iterable = [...];
for (const [index, elem] in iterable.entries()) {
f(index, elem);
}
// or
iterable.forEach((elem, index) => {
f(index, elem);
});
Example 3: javascript for loop return index
const targetindex = myarray.findIndex(item => item.name === 'xyz');