Skip to content

Instantly share code, notes, and snippets.

@fortunee
Created November 7, 2017 23:39
Show Gist options
  • Save fortunee/1b257ee93c890c70e361b74c55fe2c62 to your computer and use it in GitHub Desktop.
Save fortunee/1b257ee93c890c70e361b74c55fe2c62 to your computer and use it in GitHub Desktop.
Function Hoisting
console.log(func1);
console.log(func2);
let func1 = function() {
// do something
}
function func2() {
// do another thing
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment