How can you access both the index and value of an array element in a for...of loop?

  • for (let [index, value] of array.entries())
  • for (let {index, value} of array.entries())
  • for (let (index, value) of array.entries())
  • for (let index, value of array.entries())
In a for...of loop, you can use the entries() method on the array to access both the index and value. The returned value is an array where the first element is the index and the second element is the value. This destructuring assignment allows easy access to both index and value.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *