Skip to content

Instantly share code, notes, and snippets.

@ashish9342
Last active October 22, 2018 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ashish9342/22eae3f4bf57658f834a083ea78c4094 to your computer and use it in GitHub Desktop.
Save ashish9342/22eae3f4bf57658f834a083ea78c4094 to your computer and use it in GitHub Desktop.
Hoisting
//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