Results 1 - 6 of 6

WeakSet

The WeakSet object lets you store weakly held objects in a collection.
ECMAScript6 JavaScript WeakSet

WeakSet.prototype

The WeakSet.prototype property represents the prototype for the WeakSet constructor.
ECMAScript6 JavaScript Property WeakSet

WeakSet.prototype.add()

The add() method appends a new object to the end of a WeakSet object.
ECMAScript6 JavaScript Method Prototype WeakSet

WeakSet.prototype.clear()

The clear() method used to remove all elements from a WeakSet object, but is no longer part of ECMAScript and its implementations.
JavaScript Method Obsolete Prototype WeakSet

WeakSet.prototype.delete()

The delete() method removes the specified element from a WeakSet object.
ECMAScript6 JavaScript Method Prototype WeakSet

WeakSet.prototype.has()

The has() method returns a boolean indicating whether an object exists in a WeakSet or not.
ECMAScript6 JavaScript Method Prototype WeakSet