Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created June 29, 2019 01:28
Show Gist options
  • Save prof3ssorSt3v3/ee7e66139b072d180506ddaa06b5373d to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/ee7e66139b072d180506ddaa06b5373d to your computer and use it in GitHub Desktop.
//var hoisting vs let hoisting
//WHAT will be the output from this code and why?
function f() {
console.log('var', area);
console.log('let', name);
let name = 'Bert';
var area = 'Geology';
}
f();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment