Checking if a value exists

suggest change

To check if a value exits in a WeakSet, use the .has() method.

const obj1 = {},
      obj2 = {};

const weakset = new WeakSet([obj1]);
console.log(weakset.has(obj1)); // true
console.log(weakset.has(obj2)); // false

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents