0 votes
in JavaScript by
What are the differences between WeakMap and Map?

1 Answer

0 votes
by

The main difference is that references to key objects in Map are strong while references to key objects in WeakMap are weak. i.e, A key object in WeakMap can be garbage collected if there is no other reference to it. Other differences are,

  1. Maps can store any key type Whereas WeakMaps can store only collections of key objects
  2. WeakMap does not have size property unlike Map
  3. WeakMap does not have methods such as clear, keys, values, entries, forEach.
  4. WeakMap is not iterable.

Related questions

0 votes
+1 vote
asked Mar 22, 2021 in JavaScript by Robindeniel
0 votes
asked Mar 20, 2021 in JavaScript by sharadyadav1986
...