Skip to content

Instantly share code, notes, and snippets.

@ear1grey
Created October 24, 2013 12:29
Show Gist options
  • Save ear1grey/7136322 to your computer and use it in GitHub Desktop.
Save ear1grey/7136322 to your computer and use it in GitHub Desktop.
A scope example for sharing...
//varscope
var x1 = 3;
for (var y1=x1;y1>0; y1--) {
var x1 = y1;
console.log(x1);
console.log(y1);
}
console.log(x1);
console.log(y1);
//letscope
var x = 3;
for (let y=x;y>0; y--) {
let x = y;
console.log(x);
console.log(y);
}
console.log(x);
console.log(y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment