FrontendDeveloper.in

JavaScript question detail

What are the differences between WeakSet and Set

The main difference is that references to objects in Set are strong while references to objects in WeakSet are weak. i.e, An object in WeakSet can be garbage collected if there is no other reference to it. Other differences are:

  1. Set can store any value whereas WeakSet can store only collections of objects
  2. WeakSet does not have size property unlike Set
  3. WeakSet does not have methods such as clear, keys, values, entries, forEach.
  4. WeakSet is not iterable.
Back to all JavaScript questions
Get LinkedIn Premium at Rs 399