Skip to content

Instantly share code, notes, and snippets.

@crongro
Created April 2, 2017 07:47
Show Gist options
  • Save crongro/397d2258ecc63afdd12cde32d1e7edb6 to your computer and use it in GitHub Desktop.
Save crongro/397d2258ecc63afdd12cde32d1e7edb6 to your computer and use it in GitHub Desktop.
es6_weakSet
let ws = new WeakSet();
let a = [1,2,3];
ws.add(a);
console.log(ws.has(a)); //true
a = null;
console.log(ws.has(a)); //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment