Skip to content

Instantly share code, notes, and snippets.

@mgonto
Created March 6, 2013 16:51
Show Gist options
  • Select an option

  • Save mgonto/5100840 to your computer and use it in GitHub Desktop.

Select an option

Save mgonto/5100840 to your computer and use it in GitHub Desktop.
// bad
if (currentUser) {
function test() {
console.log('Nope.');
}
}
// good
if (currentUser) {
var test = function test() {
console.log('Yup.');
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment