Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created July 19, 2017 06:51
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 debugmodedotnet/b9f084bc5dd79c8f5751b5c48b444607 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/b9f084bc5dd79c8f5751b5c48b444607 to your computer and use it in GitHub Desktop.
function foo() {
var x = 9;
if (x > 5) {
let x = 7;
console.log("Value of x in if statement = " + x);
}
console.log("Value of x outside if statement = " + x);
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment