Skip to content

Instantly share code, notes, and snippets.

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