Skip to content

Instantly share code, notes, and snippets.

@nestoralonso
Last active May 31, 2016 18:24
Show Gist options
  • Save nestoralonso/657b32b83d25f35a7b1bcc7a5b9ba335 to your computer and use it in GitHub Desktop.
Save nestoralonso/657b32b83d25f35a7b1bcc7a5b9ba335 to your computer and use it in GitHub Desktop.
// Object literal demo
var obj = {};
var key = Symbol('foo');
obj[key] = 'baz';
console.log(obj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment