WeakSet.prototype.has()

The has() method returns a boolean indicating whether an object exists in a WeakSet or not.

Syntax

ws.has(value);

Parameters

value
Required. The object to test for presence in the WeakSet.

Return value

Boolean
Returns true if an element with the specified value exists in the WeakSet object; otherwise false.

Examples

Using the has method

var ws = new WeakSet();
var obj = {};
ws.add(window);

mySet.has(window);  // returns true
mySet.has(obj);     // returns false

Specifications

Specification
ECMAScript (ECMA-262)
The definition of 'WeakSet.prototype.has' in that specification.

Browser compatibility

DesktopMobileServer
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung InternetNode.js
hasChrome Full support 36Edge Full support 12Firefox Full support 34IE No support NoOpera Full support 23Safari Full support 9WebView Android Full support 37Chrome Android Full support 36Firefox Android Full support 34Opera Android Full support 24Safari iOS Full support 9Samsung Internet Android Full support 3.0nodejs Full support 0.12

Legend

Full support
Full support
No support
No support

See also