Skip to content

Instantly share code, notes, and snippets.

@jeroenbourgois
Created September 13, 2012 20:02
Show Gist options
  • Save jeroenbourgois/3717178 to your computer and use it in GitHub Desktop.
Save jeroenbourgois/3717178 to your computer and use it in GitHub Desktop.
// bad
for (var i = 0; i < 10; i++) {
...
}
if (a == b) {
...
}
while (a !== 1) {
...
}
// good
for(var i = 0; i < 10; i++) {
...
}
if(a == b) {
...
}
while(a !== 1) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment