Created
July 1, 2015 20:47
-
-
Save wilk/15347b5ae8ef5534e747 to your computer and use it in GitHub Desktop.
Blocked-Scope Function
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
{ | |
function num() {return 1} | |
{ | |
function num() {return 5} | |
console.log(num()) // 5 | |
} | |
console.log(num()) // 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment