Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active April 26, 2017 04:57
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 Ibro/475d22fb7021f50bc96e2f4dee9434c3 to your computer and use it in GitHub Desktop.
Save Ibro/475d22fb7021f50bc96e2f4dee9434c3 to your computer and use it in GitHub Desktop.
Symbols basics - Coding Blast - www.codingblast.com
let symbol1 = Symbol('coding');
let symbol2 = Symbol('coding');
console.log(symbol1 === symbol2);
var obj = {};
obj[symbol1] = 5;
obj[symbol2] = 11;
console.log(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment