Skip to content

Instantly share code, notes, and snippets.

@jgautier
Created May 24, 2011 04:55
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 jgautier/988159 to your computer and use it in GitHub Desktop.
Save jgautier/988159 to your computer and use it in GitHub Desktop.
sample code for let
function letX(){
var x = 0;
if(true){
let x = 1;
//1
console.log(x);
}
//0
console.log(x);
}
letX();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment