Last active
May 31, 2016 18:24
-
-
Save nestoralonso/657b32b83d25f35a7b1bcc7a5b9ba335 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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