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.
Loading...
Related Quiz
- In a WeakSet, the existence of an object in the set does not prevent it from being ________ by the garbage collector.
- If you have a configuration object that should not be altered during the execution of a program, how would you declare it using ES6 syntax?
- To define a function as a method in an object literal, ES6 syntax does not require the ________ keyword.
- One primary difference between WeakMap and Map is that WeakMap keys are ________ to garbage collection.
- How does tree shaking differ between named and default exports?