Answers for "how to use index in a for of using javascript"

2

js for of array with index

for (const [index, value] of [1, 2, 3, 4, 5].entries()) {
  console.log(index, value);
}
Posted by: Guest on June-18-2021
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

Code answers related to "how to use index in a for of using javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language