Skip to content

Instantly share code, notes, and snippets.

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