How does garbage collection in JavaScript affect WeakSet?
- WeakSet does not participate in garbage collection
- WeakSet triggers garbage collection on its own
- Garbage collection has no impact on WeakSet
- WeakSet entries are explicitly removed during garbage collection
Garbage collection has no impact on WeakSet. Unlike traditional sets, WeakSet does not prevent the referenced objects from being garbage-collected, making it useful in scenarios where you don't want to retain objects solely because they are part of a set.
Loading...
Related Quiz
- What is the default behavior of module resolution in ES6 when importing a module without specifying a file extension?
- Each call to the next() method on a generator returns an object with two properties: value and _________.
- How does tree shaking differ between named and default exports?
- How can default parameters in ES6 simplify recursive function calls?
- How are mixins typically applied to a class in ES6?