Skip to content

Instantly share code, notes, and snippets.

@gtrak
Created February 27, 2013 19:38
Show Gist options
  • Save gtrak/5050973 to your computer and use it in GitHub Desktop.
Save gtrak/5050973 to your computer and use it in GitHub Desktop.
-> a = {json : "hello"}
Object {json: "hello"}
-> a.json
"hello"
-> a = {"json" : "hello"}
Object {json: "hello"}
-> a.json
"hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment