Skip to content

Instantly share code, notes, and snippets.

@caubry
Created January 15, 2014 21:39
Show Gist options
  • Select an option

  • Save caubry/8445227 to your computer and use it in GitHub Desktop.

Select an option

Save caubry/8445227 to your computer and use it in GitHub Desktop.
// Error
functionOne();
var functionOne = function() {
//
}
// No error
functionTwo();
function functionTwo() {
//
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment