vote up 3 vote down star
4

I've been using JSLint to make me feel bad about my JavaScript. It is great, by the way. There is one check that I don't quite understand and I'd like your views, please.

From jslint.com: In languages with block scope, it is usually recommended that variables be declared at the site of first use. But because JavaScript does not have block scope, it is wiser to declare all of a function's variables at the top of the function. It is recommended that a single var statement be used per function.

What is the last sentance in bold really saying? I think I should be declaring multiple variables like this?

var foo = 1, bar = 2;

And, is the "wise" part just a programming style to discourage errors down the line or is there more to it than that?

Thanks for your help.

flag

I've had two superb answers from stackoverflow.com/users/5445/cms and stackoverflow.com/users/51101/breton. I feel that together they both answer this question. How can I give credit to both? :( – objektivs Aug 6 at 0:01
1  
By the way, if you really wanna feel bad about your code, try reading the source code to JSLINT and figuring out how it works. It's perfectly plain and readable, and yet still mysterious. It's like finding out that the universe is a fractal calculated by the equation 2+2 = ? – Breton Aug 6 at 0:13

4 Answers

vote up 12 vote down check

The problem is that, whether you realise it or not, javascript invisibly moves all the var declarations to the top of the function scope.

so if you have a function like this

var i = 5
function testvar () {
     alert(i);
     var i=3;
}
testvar();

the alert window will contain undefined. because internally, it's been changed into this:

var i = 5
function testvar () {
     var i;
     alert(i);
     i=3;
}
testvar();

this is called "hoisting". The reason crockford so strongly advocates var declarations go at the top, is that it makes the code visibly match what it's going to do, instead of allowing invisible and unexpected behavior to occur.

link|flag
Interesting - never really knew that about JS - of course, I usually define all my variables at the top anyway, and rarely reuse a variable name from an outer loop/function. – gnarf Aug 5 at 23:56
This is interesting, but not really related to block scope. – Triptych Aug 6 at 2:31
But it is a valid answer to my question... – objektivs Aug 6 at 3:18
vote up 2 vote down

Basically in JavaScript blocks ({ ... }) do not introduce a new scope, there is only function-scope, so no scope is created on any other statement.

A variable introduced anywhere in a function is visible everywhere in the function.

For example:

function myFunction(){
  var one = 1;

  if (one){
    var two = one + 1;
  }

  (function () {
    var three = one + two;
  })();

  // at this point both variables *one* and *two* are accessible but 
  // the variable *three* was declared in the scope of a inner function
  // and is not accessible  at this point.
}

In languages with block scope, it recommended to declare the variables at the point of first use, but since JavaScript does not have block scope, it is better to declare all of a function's variables at the top of the function.

Check this article.

link|flag
You don't really explain why it's better though. It does eventually follow from function only scope that it's better for vars to be at the top. But you've left out the reasoning steps from that fact, to your conclusion. – Breton Aug 5 at 23:33
I've just read the article you linked to, and it makes the same mistake as Chetan. redeclaring a var is a NOOP. It is completely benign and doesn't cause any problems. THat's not to say that restricting yourself to one var statement is useless, but you, nor the article, has actually made a convincing case for it. – Breton Aug 5 at 23:39
@Breton, it can cause problems because it's often a reflection of a confused programmer. It can also confuse other programmers who do the sensible thing and put all the vars are the top of the function. – Nosredna Aug 5 at 23:43
If this is the reasoning, then that should be in the original answer. As it stands it's like a syllogism that's missing its second premise. – Breton Aug 5 at 23:49
Kittens are furry and small. Therefore Kittens are cute. (As true as it is, it's an invalid argument, because you've left out "all Furry and small things are cute") – Breton Aug 5 at 23:53
vote up 2 vote down

Yes, it means that you declare all variables at the beginning of the function. Whether you want to do it in one line or multiple lines is a matter of choice.

The reason is explained in the paragraph you mentioned. Javascript variables only have function level scope. If you declare the same variable inside an if/while/for block, it will be overwritten by the new value since the block doesn't carry a new scope. This is different from languages such as Java. To avoid such surprises, declare all the variables you are going to use in the function at the beginning of function so that you don't accidentally 'redeclare' andything.

link|flag
I don't think redeclaring a variable is the problem. That doesn't throw an error like it does in C (or java?). In fact it does nothing. – Breton Aug 5 at 23:29
Sorry, I must have been more clear. What I meant was declaring the same variable name inside a block, which is allowed in Java. This new variable lives only inside the block. – Chetan Sastry Aug 5 at 23:38
Ah yes, I suppose that would be a problem if you were used to a language with block scope. – Breton Aug 5 at 23:42
My reading comprehension skills are shit today. I totally misunderstood your original post. – Breton Aug 5 at 23:47
No problem, I could have framed my answer better too. – Chetan Sastry Aug 5 at 23:52
vote up 1 vote down

The lack of block scope explains the code below:

var a = 1;
if (something) {
    var a = 2;
}

alert(a); // Alerts "2"

In most C-style (as in syntax) languages, the var a = 2 definition would define 'a' only for the scope of the if block. Using a single var statement at the top of the function helps to avoid this quirk of Javascript, which is not always as obvious as the above, and would be unexpected to C/C#/Java programmers.

link|flag

Your Answer

Get an OpenID
or

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