If you need to access both the index and value in an array using for...of, use __________ to convert the array into an iterable of index-value pairs.

  • Object.entries()
  • Array.entries()
  • indexValuePairs()
  • iterable()
If you need to access both the index and value in an array using for...of, use Array.entries() to convert the array into an iterable of index-value pairs. This allows you to destructure the pairs in the for...of loop, providing both index and value in each iteration.
Add your answer
Loading...

Leave a comment

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