Answers for "js for of loop with index"

8

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)
}
Posted by: Guest on July-31-2020
5

javascript for...of index

for (const [i, v] of ['a', 'b', 'c'].entries()) {
  console.log(i, v)
}
Posted by: Guest on November-29-2019
-2

javascript for loop return index

const targetindex = myarray.findIndex(item => item.name === 'xyz');
Posted by: Guest on June-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language