Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Last active February 21, 2020 22:45
Show Gist options
  • Save jasminegmp/924e193244551474206dca89a2d1881b to your computer and use it in GitHub Desktop.
Save jasminegmp/924e193244551474206dca89a2d1881b to your computer and use it in GitHub Desktop.
var a = 'hi';
function myFunction(){
var a; // the a in the local scope is hoisted here and a is 'undefined
console.log(a); // outputs 'undefined
a = 'hello';
console.log(a); // outputs 'hello'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment