Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created July 15, 2017 13:46
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/5d8d73fa3542ad13f5959ce2629c5bec to your computer and use it in GitHub Desktop.
Save debugmodedotnet/5d8d73fa3542ad13f5959ce2629c5bec to your computer and use it in GitHub Desktop.
function abc()
{
var foo = 9;
if(true){
let foo = 89;
console.log(foo);
}
console.log(foo);
}
abc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment