Skip to content

Instantly share code, notes, and snippets.

@gerisztein
Created September 15, 2016 03:24
Show Gist options
  • Select an option

  • Save gerisztein/7b51dcecace9b8957acd1d41dae94bb0 to your computer and use it in GitHub Desktop.

Select an option

Save gerisztein/7b51dcecace9b8957acd1d41dae94bb0 to your computer and use it in GitHub Desktop.
hoisting examples
console.log(ghost);
// ReferenceError: ghost is not defined.
console.log(ghost);
var ghost;
// undefined
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