Weakmap
it allows you to store a key-value pairs. key must be object. The key object of weakmap is weakly referenced type.
it does not support iteration ( foreach, keys(), entries()
it has same properties (get, has, delete) like map. We can't use size property
Hashtags: #javascript #map #collections #datastructure