WeakSet.prototype.add()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.

add() メソッドは、新しい要素を WeakSet オブジェクトの最後に追加します。

試してみましょう

構文

ws.add(value);

引数

value

必須。 WeakSet コレクションに追加する要素の値です。

返値

WeakSet オブジェクトです。

add() の使用

js
var ws = new WeakSet();

ws.add(window); //window オブジェクトを WeakSet へ追加

ws.has(window); // true

// WeakSet は引数としてオブジェクトのみを取ります。
ws.add(1);
// 結果は "TypeError: Invalid value used in weak set" (Chrome)
// "TypeError: 1 is not a non-null object" (Firefox)

仕様書

Specification
ECMAScript Language Specification
# sec-weakset.prototype.add

ブラウザーの互換性

BCD tables only load in the browser

関連情報