Created
November 22, 2020 16:18
-
-
Save kermit-klein/4d2e151b7ee1155a0d2c9cf9eb441fd2 to your computer and use it in GitHub Desktop.
hoist5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = 1; | |
function b() { | |
a = 10; | |
return; | |
function a() {} | |
} | |
b(); | |
alert(a); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment