Skip to content

Instantly share code, notes, and snippets.

@ristaa
Created September 12, 2018 08:22
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 ristaa/c83e31928a888d61aa1443097500d8fe to your computer and use it in GitHub Desktop.
Save ristaa/c83e31928a888d61aa1443097500d8fe to your computer and use it in GitHub Desktop.
Usage of let keyword (block-scoped)
let howMany = 4;
if(howMany > 3){
let displayApples = "I have more than 3 apples";
console.log(displayApples); // "I have more than 3 apples"
}
console.log(displayApples); // displayApples is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment