Creating a WeakSet object

suggest change

The WeakSet object is used for storing weakly held objects in a collection. The difference from Set is that you can’t store primitive values, like numbers or string. Also, references to the objects in the collection are held weakly, which means that if there is no other reference to an object stored in a WeakSet, it can be garbage collected.

The WeakSet constructor has an optional parameter, which can be any iterable object (for example an array). All of its elements will be added to the created WeakSet.

const obj1 = {},
      obj2 = {};

const weakset = new WeakSet([obj1, obj2]);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents