Skip to content

Instantly share code, notes, and snippets.

@jwulf
Last active February 26, 2020 10:19
Show Gist options
  • Save jwulf/d302fde251bc273ee920fb9a96aa8c9c to your computer and use it in GitHub Desktop.
Save jwulf/d302fde251bc273ee920fb9a96aa8c9c to your computer and use it in GitHub Desktop.
function outerScope() {
let a = "Hello"
console.log(a) // "Hello"
function innerScope() {
a = 3
return
}
innerScope()
console.log(a) // 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment