The difference is scoping. var is scoped to the nearest function block (or global if outside a function block), and let is scoped to the nearest enclosing block (or global if outside a function block), which can be smaller than a function block.
Also, just like var, variables declared with let are visible before they are declared in their enclosing block, as shown in the demo.
Demo:
(Firefox Only)
Global:
They are identical when used like this outside a function block.
let me = 'go'; //globally scoped
var i = 'able'; //globally scoped
Function:
They are identical when used like this in a function block.
function ingWithinEstablishedParameters() {
let terOfRecommendation = 'awesome worker!'; //function block scoped
var sityCheerleading = 'go!'; //function block scoped
};
Block:
Here is the difference. let is only visible in the for() loop and var is visible to the whole function.
function allyIlliterate() {
//tuce is *not* visible out here
for( let tuce = 0; tuce < 5; tuce++ ) {
//tuce is only visible in here (and in the for() parentheses)
};
//tuce is *not* visible out here
};
function byE40() {
//nish *is* visible out here
for( var nish = 0; nish < 5; nish++ ) {
//nish is visible to the whole function
};
//nish *is* visible out here
};
Additionally:
let can also be used to create its own enclosing block.
function conjunctionJunctionWhatsYour() {
//sNotGetCrazy is *not* visible out here
let( sNotGetCrazy = 'now' ) {
//sNotGetCrazy is only visible in here
};
//sNotGetCrazy is *not* visible out here
};
let,foreachare currently mozilla only extensions which will cause parse errors in any strict implementation of the ECMAScript standard – olliej Apr 17 '09 at 21:40letis included in the 6th edition draft and will most likely be in the final specification. – Richard Ayotte Mar 31 '12 at 15:08