One primary difference between WeakMap and Map is that WeakMap keys are ________ to garbage collection.
- Referenced
- Immutable
- Strongly bound
- Weakly bound
In a WeakMap, the keys are weakly held, meaning that they don't prevent the referenced objects from being garbage collected. This is particularly useful when using objects as keys, as it allows them to be garbage collected when they are no longer needed.
Loading...
Related Quiz
- What is the base case in a recursive function?
- What is a potential pitfall when using multiple named exports in an ES6 module?
- Using yield* within a generator function delegates to another _________ or iterable object.
- A pure function always returns the same output given the same _________.
- How does the super keyword differ when used in static methods compared to non-static methods?