Skip to content

Instantly share code, notes, and snippets.

@CodHeK
Created August 16, 2018 10:25
Show Gist options
  • Save CodHeK/b2ff065cddfe065501831f7b29531b1c to your computer and use it in GitHub Desktop.
Save CodHeK/b2ff065cddfe065501831f7b29531b1c to your computer and use it in GitHub Desktop.
let, var, const
//how we can use var
if(true) {
var t = 9;
}
console.log(t) //prints 9
//how we use let
let t1 = 9;
if(true) {
let t1 = 10;
console.log(t1); //prints 10
}
console.log(t1); //prints 9
//use of const
const t3 = 10;
t3 = 11; //error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment