In javascript 1.7, the let keyword was added. I've heard it described as a "local" variable, but I'm still not quite sure how it behaves differently than the var keyword.
What are the differences between the two? When should let be used over var?

let,foreachare currently mozilla only extensions which will cause parse errors in any strict implementation of the ECMAScript standard – olliej Apr 17 at 21:40