Created
September 15, 2016 03:24
-
-
Save gerisztein/7b51dcecace9b8957acd1d41dae94bb0 to your computer and use it in GitHub Desktop.
hoisting examples
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(ghost); | |
| // ReferenceError: ghost is not defined. |
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(ghost); | |
| var ghost; | |
| // undefined |
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
| var ghost; | |
| console.log(ghost); | |
| // undefined | |
| ghost = "Hi there!"; | |
| console.log(ghost); | |
| // "Hi there!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment