📅  最后修改于: 2020-10-25 04:42:49             🧑  作者: Mango
JavaScript WeakMap对象是一种类似于Map的集合。它将每个元素存储为键-值对,其中键被弱引用。在这里,键是对象,值是任意值。
new WeakMap([iterable])
可迭代-表示数组和其他可迭代对象,其元素为键值对形式。
Methods | Description |
---|---|
delete() | It deletes the specified element from the WeakMap object. |
get() | It returns the value of specified key. |
has() | It indicates whether the WeakMap object contains the specified value element. |
set() | It adds or updates the key-value pairs to WeakMap object. |