Skip to content

Instantly share code, notes, and snippets.

@jeroenbourgois
Created September 13, 2012 19:57
Show Gist options
  • Save jeroenbourgois/3717153 to your computer and use it in GitHub Desktop.
Save jeroenbourgois/3717153 to your computer and use it in GitHub Desktop.
// bad
while( count < collection.length ) {
foo();
}
// good
while(count < collection.length) {
foo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment