Last active
November 13, 2017 21:51
-
-
Save fortunee/fa9c249b9ed2815955920bf795b96863 to your computer and use it in GitHub Desktop.
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(age); // -> undefined | |
var age = 22; | |
console.log(age); // -> 22 | |
console.log(location); // throws -> Uncaught ReferenceError: location is not defined | |
location = 'Lagos, Nigeria'; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment