To use destructuring in a for...of loop iterating over a Map, you would write for (const [key, ______] of map).

  • item
  • val
  • value
  • element
To use destructuring in a for...of loop iterating over a Map, you would write for (const [key, value] of map). The value here is the second element of the destructuring assignment, representing the value associated with the current key in the Map.
Add your answer
Loading...

Leave a comment

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