Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created July 19, 2017 06:50
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/d7bb15f004965cb03ff532e19680195f to your computer and use it in GitHub Desktop.
Save debugmodedotnet/d7bb15f004965cb03ff532e19680195f to your computer and use it in GitHub Desktop.
function foo() {
var x = 9;
if (x > 5) {
var 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