Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active July 6, 2018 19:59
Show Gist options
  • Save nairihar/1704286efa017b548c1395f3b2fc8819 to your computer and use it in GitHub Desktop.
Save nairihar/1704286efa017b548c1395f3b2fc8819 to your computer and use it in GitHub Desktop.
JavaScript series, part 3, WeakMap and WeakSet, medium
const weakMap = new WeakMap(); // be sure you using custom WeakMap not native
const obj = Object.freeze({ hello: true });
weakMap.set(obj, 12);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment