Skip to content

Instantly share code, notes, and snippets.

@kselax
Created November 14, 2018 22:46
Show Gist options
  • Select an option

  • Save kselax/942fc316d965043f9bcd11dfd76b768b to your computer and use it in GitHub Desktop.

Select an option

Save kselax/942fc316d965043f9bcd11dfd76b768b to your computer and use it in GitHub Desktop.
let scope
{
var x = 11
{
let x = 10
{
console.log('x (unknown) = ', x); // can you guess which x here?
function f() {
var a = 1
{
var a = 2
{
var a = 30
}
console.log('a = ', a); // 30
}
console.log('a = ', a); // 30
}
f()
}
console.log('x = ', x); // 30
}
console.log('x = ', x); // 30
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment