Answers for "get index from for of loop javascript"

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
-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 "get index from for of loop javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language