Skip to content

Instantly share code, notes, and snippets.

@dhigginbotham
Last active August 29, 2015 13:56
Show Gist options
  • Save dhigginbotham/9339898 to your computer and use it in GitHub Desktop.
Save dhigginbotham/9339898 to your computer and use it in GitHub Desktop.
simple explanation of the term "variable hoisting"
console.log(meow); // undefined
var meow = 'meow';
console.log(meow); // 'meow'
console.log(bark); //ReferenceError: bark is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment