Skip to content

Instantly share code, notes, and snippets.

@kermit-klein
Created November 22, 2020 15:32
Show Gist options
  • Save kermit-klein/336f6135a114289e9b88d2fbd0b0a775 to your computer and use it in GitHub Desktop.
Save kermit-klein/336f6135a114289e9b88d2fbd0b0a775 to your computer and use it in GitHub Desktop.
hoist4
var foo = 1;
function bar() {
var foo;
if (!foo) {
foo = 10;
}
alert(foo);
}
bar();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment