Skip to content

Instantly share code, notes, and snippets.

@whichbuffer
Created October 15, 2018 07:53
Show Gist options
  • Save whichbuffer/2acb693b787ba92676b59f6ffa008c59 to your computer and use it in GitHub Desktop.
Save whichbuffer/2acb693b787ba92676b59f6ffa008c59 to your computer and use it in GitHub Desktop.
hoisting
function foo() {
console.log("foo called...");
}
foo();
function foo() {
console.log("foo redined");
}
foo();
//hoisting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment