Skip to content

Instantly share code, notes, and snippets.

@jeroenbourgois
Created September 13, 2012 19:50
Show Gist options
  • Save jeroenbourgois/3717109 to your computer and use it in GitHub Desktop.
Save jeroenbourgois/3717109 to your computer and use it in GitHub Desktop.
// bad
function foo (){
alert('Bar');
}
function foo(){
alert('Bar');
}
// good
function foo() {
alert('Bar');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment