Skip to content

Instantly share code, notes, and snippets.

@fortunee
Last active November 13, 2017 21:51
Show Gist options
  • Save fortunee/fa9c249b9ed2815955920bf795b96863 to your computer and use it in GitHub Desktop.
Save fortunee/fa9c249b9ed2815955920bf795b96863 to your computer and use it in GitHub Desktop.
Hoisting
console.log(age); // -> undefined
var age = 22;
console.log(age); // -> 22
console.log(location); // throws -> Uncaught ReferenceError: location is not defined
location = 'Lagos, Nigeria';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment