Created
November 7, 2017 23:39
-
-
Save fortunee/1b257ee93c890c70e361b74c55fe2c62 to your computer and use it in GitHub Desktop.
Function Hoisting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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