When iterating over a Map object with a for...of loop, each iteration returns an array where the first element is the _______ and the second is the value.
- key
- index
- property
- length
In a Map object, the first element of the array returned during iteration represents the key, and the second element represents the corresponding value.
Loading...
Related Quiz
- When using Symbols for object properties, they are not included in __________ enumerations.
- What happens when a generator function encounters a yield keyword?
- How does the event loop handle callback functions in JavaScript?
- To rename a named export during import, use the syntax import { originalName as ______ } from 'module-name';.
- How does ES6 handle importing a module that is located in a node_modules folder?