Skip to content

Instantly share code, notes, and snippets.

@scabbiaza
Last active January 21, 2016 14:13
Show Gist options
  • Save scabbiaza/187d935bab3945079dd9 to your computer and use it in GitHub Desktop.
Save scabbiaza/187d935bab3945079dd9 to your computer and use it in GitHub Desktop.
PTF Training session. Frontend for Backend Developers.
function varTest() {
 var x = 31;
 if (true) {
   var x = 71;      // same variable!
   console.log(x);  // 71
 }   
 console.log(x);    // 71
}
function letTest() {
 let x = 31;
 if (true) {
   let x = 71;      // different variable
   console.log(x);  // 71
 }
 console.log(x);    // 31
}
var a = 0;
var b = 0;

if (a === 0) {
 let a = 1; // The scope is inside the if-block
 var b = 1; // The scope is inside the function

 console.log(a);  // 1
 console.log(b);  // 1
}

console.log(a); // 0
console.log(b); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment