Skip to content

Instantly share code, notes, and snippets.

@JoeChapman
Created April 5, 2012 15:51
Show Gist options
  • Select an option

  • Save JoeChapman/2312069 to your computer and use it in GitHub Desktop.

Select an option

Save JoeChapman/2312069 to your computer and use it in GitHub Desktop.
Hoisting function definitions
var a = function () {
return a();
var a = function () {
return 1;
};
function a() {
return 2;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment