Skip to content

Instantly share code, notes, and snippets.

@ostronom
Last active August 29, 2015 14:18
Show Gist options
  • Save ostronom/7583fc65f2ffa97fb009 to your computer and use it in GitHub Desktop.
Save ostronom/7583fc65f2ffa97fb009 to your computer and use it in GitHub Desktop.
> {"":1}
VM134:2 Uncaught SyntaxError: Unexpected token :
> z = {}
Object {}
> z[""]
undefined
> z[""] = 1
1
> z
Object {"": 1}
> JSON.stringify(z)
"{"":1}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment