add()
method appends a new object to the end of a
WeakSet
对象。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
ws.add(value);
WeakSet
collection.
WeakSet
对象。
var ws = new WeakSet(); ws.add(window); // add the window object to the WeakSet ws.has(window); // true // Weakset only takes objects as arguments ws.add(1); // results in "TypeError: Invalid value used in weak set" in Chrome // and "TypeError: 1 is not a non-null object" in Firefox
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'WeakSet.prototype.add' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
add
|
Chrome 36 | Edge 12 | Firefox 34 | IE No | Opera 23 | Safari 9 | WebView Android 37 | Chrome Android 36 | Firefox Android 34 | Opera Android 24 | Safari iOS 9 | Samsung Internet Android 3.0 | nodejs 0.12 |
完整支持
不支持
WeakSet
WeakSet.prototype.add()
WeakSet.prototype.clear()
WeakSet.prototype.delete()
WeakSet.prototype.has()
Function
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()