Skip to content

Instantly share code, notes, and snippets.

@sampathsl
Created December 13, 2015 17:59
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 sampathsl/aaa5ae5c3f2482706b93 to your computer and use it in GitHub Desktop.
Save sampathsl/aaa5ae5c3f2482706b93 to your computer and use it in GitHub Desktop.
ES6 - var vs let keywords
var checkDataVar = 'Test';
console.log('Outside var showES5Features: ' + checkDataVar);
while(true){
//var key word
var checkDataVar = 'Poop!';
console.log('Inside var showES5Features: ' + checkDataVar);
break;
}
console.log('Outside var showES5Features: ' + checkDataVar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment