Skip to content

Instantly share code, notes, and snippets.

@gish
Created January 26, 2015 09:59
Show Gist options
  • Save gish/bcde59529e71f1e63762 to your computer and use it in GitHub Desktop.
Save gish/bcde59529e71f1e63762 to your computer and use it in GitHub Desktop.
variable declaration convention
// Option 1
var foo = 21;
var baz, bar;
// Option 2
var foo = 21;
var baz;
var bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment