W3cubDocs

/JavaScript

weakSet.add

The add() method appends a new object to the end of a WeakSet object.

Syntax

ws.add(value);

Parameters

value
Required. The object to add to the WeakSet collection.

Return value

The WeakSet object.

Using the add method

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

Specifications

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support 36 Yes 34 No 23 9
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support 37 36 Yes 34 23 9 Yes
Server
Node.js
Basic support 0.12

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet/add