Skip to content

Instantly share code, notes, and snippets.

@matthieu-D
Last active November 4, 2016 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthieu-D/22d41ffcd0c0a7685be2fac06bd11e18 to your computer and use it in GitHub Desktop.
Save matthieu-D/22d41ffcd0c0a7685be2fac06bd11e18 to your computer and use it in GitHub Desktop.
let obj = {};
var symb = Symbol.for("Symbol");
obj[symb] = 'supposed to be hidden';
console.log(obj[symb]); // 'supposed to be hidden'
var sameSymb = Symbol.for("Symbol");
console.log(symb === sameSymb); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment