Skip to content

Instantly share code, notes, and snippets.

@saimonmoore
Created May 17, 2011 11:54
Show Gist options
  • Save saimonmoore/976339 to your computer and use it in GitHub Desktop.
Save saimonmoore/976339 to your computer and use it in GitHub Desktop.
// i.schlueter's comma-first style
var o =
{ a : "ape"
, b : "bat"
, c : "cat"
, d : "dog"
, e : "elf"
, f : "fly"
, g : "gnu"
, h : "hat"
, i : "ibu"
};
//my comma-first style
var o = {
a : "ape"
, b : "bat"
, c : "cat"
, d : "dog"
, e : "elf"
, f : "fly"
, g : "gnu"
, h : "hat"
, i : "ibu"
};
//my normal style
var o = {
a : "ape",
b : "bat",
c : "cat",
d : "dog",
e : "elf",
f : "fly",
g : "gnu",
h : "hat",
i : "ibu"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment