Skip to content

Instantly share code, notes, and snippets.

@kermit-klein
Created November 22, 2020 18:06
Show Gist options
  • Save kermit-klein/24995b8a04759ed692b01bcf37092a57 to your computer and use it in GitHub Desktop.
Save kermit-klein/24995b8a04759ed692b01bcf37092a57 to your computer and use it in GitHub Desktop.
hoist6
var a = 1;
function b() {
var a;
a = function () {}
a = 10;
return;
}
b();
alert(a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment