Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tgallacher/c2096226962544d46adc7a86545620c9 to your computer and use it in GitHub Desktop.
Save tgallacher/c2096226962544d46adc7a86545620c9 to your computer and use it in GitHub Desktop.
Supplementary code snippet for Medium post
function foo(){
let bar = 5;
if(true){
let bar = 100;
}
console.log(bar); // prints: 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment