Skip to content

Instantly share code, notes, and snippets.

@wilk
Created July 1, 2015 20:47
Show Gist options
  • Save wilk/15347b5ae8ef5534e747 to your computer and use it in GitHub Desktop.
Save wilk/15347b5ae8ef5534e747 to your computer and use it in GitHub Desktop.
Blocked-Scope Function
{
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