Skip to content

Instantly share code, notes, and snippets.

@evanleck
Last active August 29, 2015 14:14
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 evanleck/25593e8d3b953d880a5a to your computer and use it in GitHub Desktop.
Save evanleck/25593e8d3b953d880a5a to your computer and use it in GitHub Desktop.
var x;
var y;
x = 5;
y = 7;
// or
var x = 5;
var y = 7;
// oooooor (notice the comma)
// the alignment of the = isn't necessary, just looks nice
var x = 5,
y = 7;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment