📅  最后修改于: 2020-10-25 04:41:42             🧑  作者: Mango
JavaScript WeakSet对象是一种集合类型,它允许我们存储弱势对象。与Set不同,WeakSet仅是对象的集合。它不包含任意值。
new WeakSet([iterable])
可迭代-表示可迭代对象,其元素将添加到新的WeakSet中。
让我们看一下JavaScript WeakSet方法的列表及其说明。
Methods | Description |
---|---|
add() | It adds a new object to the end of WeakSet object. |
delete() | It removes the specified object from the WeakSet object. |
has() | It indicates whether the WeakSet object contains the specified object element. |