Q:

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)
}
3
for (const [i, v] of ['a', 'b', 'c'].entries()) {
  console.log(i, v)
}
2

New to Communities?

Join the community