Skip to content

Instantly share code, notes, and snippets.

@tbeseda
Created April 15, 2010 14:42
Show Gist options
  • Save tbeseda/367157 to your computer and use it in GitHub Desktop.
Save tbeseda/367157 to your computer and use it in GitHub Desktop.
var myJSON = {
foo : 'bar',
lorem : 'ipsum',
bar : 'foo',
ipsum : 'lorem'
}
// commas first
var myJSON = {
foo : 'bar'
, lorem : 'ipsum'
, bar : 'foo'
, ipsum : 'lorem'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment