vote up 3 vote down star
1

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?

flag

1  
It's important to realise that JavaScript is not a standard -- things like let, foreach are currently mozilla only extensions which will cause parse errors in any strict implementation of the ECMAScript standard – olliej Apr 17 at 21:40

3 Answers

vote up 8 vote down check

Here's an explanation of the let keyword with some examples.

This table on Wikipedia shows which browsers support Javascript 1.7.

Note that IE does not support it.

link|flag
The key bit of text from the linked document seems to be, "let works very much like var. The main difference is that the scope of a var variable is the entire enclosing function". – Michael Burr Apr 17 at 20:25
4  
While it's technically correct to say IE does not support it, it's more correct to say that it's a mozilla only extension. – olliej Apr 17 at 22:56
vote up 2 vote down

There are some subtle differences -- Let scoping behaves more like variable scoping does in more or less any other language -- eg. it scopes to the enclosing block, they don't exist before they're declared, etc

However it's worth noting that let is also a Mozilla extension, not part of any standard (EcmaScript is the standard, JavaScript is the mozilla implementation, the history is slightly convoluted but that's how it goes), and so let is only available in firefox and other mozilla based browsers.

link|flag
vote up 1 vote down

Right now you should almost never use let, because you usually can't count on it being fully supported yet in the wild.

I know that's not the kind of answer you were looking for, but it's probably the most important consideration. If you have a limited deployment where you know everyone gets 1.7, then you're a lucky fellow.

link|flag
I already knew I couldn't use it due to IE6 support, but I'd like to know what it does exactly. – TM Apr 17 at 20:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.