Skip to content

Instantly share code, notes, and snippets.

@choallin
Created October 8, 2019 20:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choallin/6e17f8254f8c79f1f5a2245c13ac207e to your computer and use it in GitHub Desktop.
Save choallin/6e17f8254f8c79f1f5a2245c13ac207e to your computer and use it in GitHub Desktop.
function_scoping
function x() {
  if(true) {
  var x = "Interesting"
  }
  alert(x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment