Skip to content

Instantly share code, notes, and snippets.

@gerisztein
Last active September 15, 2016 02:43
Show Gist options
  • Save gerisztein/4baff53d7428a40931d3d36a3807cef9 to your computer and use it in GitHub Desktop.
Save gerisztein/4baff53d7428a40931d3d36a3807cef9 to your computer and use it in GitHub Desktop.
hoisting-examples.js
console.log(ghost);
// ReferenceError: ghost is not defined
console.log(ghost);
var ghost;
// undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment