Skip to content

Instantly share code, notes, and snippets.

@reime005
Created June 16, 2019 22:01
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 reime005/bf40f8dfd5ab609948d09c7ed3a50d03 to your computer and use it in GitHub Desktop.
Save reime005/bf40f8dfd5ab609948d09c7ed3a50d03 to your computer and use it in GitHub Desktop.
JavaScript hoisting example 2
fooFunction(); // ReferenceError: fooFunction is not defined
foo(); // TypeError: undefined is not a function
var foo = function fooFunction() { console.log(42) };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment