Skip to content

Instantly share code, notes, and snippets.

@danslimmon
Created October 9, 2014 20:49
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 danslimmon/b7f286a857c9a0fb0643 to your computer and use it in GitHub Desktop.
Save danslimmon/b7f286a857c9a0fb0643 to your computer and use it in GitHub Desktop.
> var x = {}, y = {}
> x.alpha = 1
> x.bravo = 2
> y.bravo = 2
> y.alpha = 1
> JSON.stringify(x)
'{"alpha":1,"bravo":2}'
> JSON.stringify(y)
'{"bravo":2,"alpha":1}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment