This article needs an editorial review. How you can help.
This is a new technology, part of the ECMAScript 2015 (ES6) standard.
This technology's specification has been finalized, but check the compatibility table for usage and implementation status in various browsers.
El mètode add()
afegeix un nou objecte al final d'un objecte WeakSet
.
Sintaxi
ws.add(value);
Paràmetres
- value
- Necessari. L'objecte que es vol afegir a la col·lecció de
WeakSet.
Utilitzar el mètode add
var ws = new WeakSet(); ws.add(window); // afegeix l'objecte window al WeakSet ws.has(window); // true
Especificacions
Especificació | Estat | Comentaris |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'WeakSet.prototype.add' in that specification. |
Standard | Definició inicial. |
Compatibilitat amb navegadors
Característica | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Suport bàsic | 36 | 34 (34) | Not supported | 23 | Not supported |
Característica | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Suport bàsic | Not supported | 34.0 (34) | Not supported | Not supported | Not supported |