A WeakSet only stores _________, and its elements are garbage collected when there is no other reference to them.
- Objects
- Primitives
- Arrays
- Functions
A WeakSet only stores objects, and its elements are garbage collected when there is no other reference to them. WeakSets are useful for holding "weak" references to objects, meaning they won't prevent an object from being garbage collected.
Loading...
Related Quiz
- When calling a static method from another method in the same class, use the class name as a _________.
- What is the purpose of the WeakMap and WeakSet in ES6 compared to Map and Set?
- How does the inclusion of "type": "module" in the package.json affect module resolution in Node.js?
- To prevent infinite recursion, it is important to define a __________ that stops the recursion.
- The ________ method is a special method for creating and initializing objects created within a class.