js for loop with index code example
Example 1: for of get index
for (const v of ['a', 'b', 'c']) {
console.log(v)
}
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);
}
iterable.forEach((elem, index) => {
f(index, elem);
});
Example 3: for of loop syntax javascript
for (let step = 0; step < 5; step++) {
console.log('Walking east one step');
}
Example 4: js get index from foreach
var myArray = [123, 15, 187, 32];
myArray.forEach(function (value, i) {
console.log('%d: %s', i, value);
});
Example 5: javascript for loop return index
const targetindex = myarray.findIndex(item => item.name === 'xyz');