Can you enumerate the keys of a WeakMap?
- Yes, you can use the getKeys method.
- No, WeakMaps do not have a method to retrieve all keys.
- Yes, you can use a loop to iterate over the keys.
- No, keys in WeakMaps cannot be enumerated.
WeakMaps prioritize privacy by not providing a direct way to enumerate keys, contributing to their use in scenarios where key visibility is a concern.
Loading...
Related Quiz
- How does destructuring work when the structure of the object does not match the destructuring pattern?
- In what scenario would a callback be more appropriate than a Promise?
- The ________ field in package.json can be used to specify different entry points for importing a package in ES6.
- To inherit properties and methods from another class in ES6, use the ________ keyword.
- How can you access both the index and value of an array element in a for...of loop?