Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Created February 21, 2020 22:55
Show Gist options
  • Save jasminegmp/135da135c025e2fd3de7bdfa4d39b05a to your computer and use it in GitHub Desktop.
Save jasminegmp/135da135c025e2fd3de7bdfa4d39b05a to your computer and use it in GitHub Desktop.
function myFunction(){
let a; // a's declaration is hoisted here, but remains uninitialized
a // Will get a ReferenceError: Cannot access 'a' before initialization
console.log(a);
}
myFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment