Last active
October 22, 2018 18:59
-
-
Save ashish9342/22eae3f4bf57658f834a083ea78c4094 to your computer and use it in GitHub Desktop.
Hoisting
This file contains 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
//Variable Hoisting | |
console.log(str); // undefined | |
var str = 'hello world'; | |
console.log(str); //hello world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment