What types of values can be added to a WeakSet?
- Only objects can be added.
- Any data type, including primitives, can be added.
- Only functions can be added.
- Only arrays can be added.
WeakSets exclusively allow objects, emphasizing their use for storing unique object references and aiding in scenarios like memory management.
Loading...
Related Quiz
- The __________ file in a module directory helps in defining the entry point for the module in ES6.
- Can currying be applied to asynchronous functions in JavaScript? How?
- In a subclass constructor, the super keyword must be called before accessing _______.
- In a web application that requires real-time data updates, how would the choice between Promises and callbacks affect performance and user experience?
- Can a Set contain elements of mixed data types in JavaScript?