Skip to content

Instantly share code, notes, and snippets.

@parshap
Created July 22, 2014 22:38
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 parshap/ba7291bf93a3d2f7000c to your computer and use it in GitHub Desktop.
Save parshap/ba7291bf93a3d2f7000c to your computer and use it in GitHub Desktop.
js trailing comma
var a = [
1,
2,
3, // <-- Trailing comma for easier future edits
];
// No trailing comma, adding a 4th element will require editing two lines
var b = [
1,
2,
3
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment