Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
54
rated 0 times [  61] [ 7]  / answers: 1 / hits: 15713  / 12 Years ago, tue, may 29, 2012, 12:00:00

Consider the following code:



for (var i=0; i<100; i++) {
// your code here
}
// some other code here
for (var i=0; i<500; i++) {
// custom code here
}


Any decent lint tool (jslint, jshint or built in IDE) will tell warning - duplicate declaration of variable i. This can be solved by using variable with another name (k, j) or moving declaration to the top:



var i; // iterator
for (i=0; i<100; i++) {}
for (i=0; i<500; i++) {}


I am not fond of both variants - I don't make declarations at the top usually (and even if I did I wouldn't want see there helper variables - i, j, k) and really nothing bad is going on in those examples to change variables' names for.



Though I do want a huge warning in case I write something like this:



for (var i=0; i<100; i++) {
for (var i=0; i<500; i++) {} // now that's bad
}


What's your approach to such cases?


More From » jslint

 Answers
2

JavaScript has many constructions which look like well-known constructions in other computer languages. It's dangerous for JavaScript to interpret the construction in another way as most other computer languages.



If somebody who doesn't know JavaScript good enough (the common case by the way) sees the construction like



for (var i=0; i<100; i++) {
// your code here
}


or sees declaration of the variable in the block



{
var i;
//some code
{
var j;
// some code
}
}


then most readers will think that block level variables will be defined. JavaScript don't have block level variables. All variables will be interpreted as function level defined.



So I never define variables inside of the code if the code is not just some test code which will be written for 5 min only. The main reason is that I don't want to write code and use language constructions which could be misunderstood.



By the way JSLint finds defining of variables inside of block such bad style that it stop processing of the code analysis. There are no JSLint options which could change this behavior. I find the behavior of JSLint not good, but I agree that declaration of variables inside of for loop is bad because it will be read by most persons as code with local loop variables, which is incorrect.



If you use



for (var i=0; i<100; i++) {
// your code here
}
// some other code here
for (var i=0; i<500; i++) {
// custom code here
}


then JavaScript moves all declarations of variables at the beginning of the function for you. So the code will be as



var i = undefined, i = undefined; // duplicate declaration which will be reduced
// to one var i = undefined;

for (i=0; i<100; i++) {
// your code here
}
// some other code here
for (i=0; i<500; i++) {
// custom code here
}


So please think about other readers of the code. Don't use any constructions which could be interpreted in the wrong way.


[#85288] Monday, May 28, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
alfredoc

Total Points: 261
Total Questions: 128
Total Answers: 89

Location: French Polynesia
Member since Sun, Aug 2, 2020
4 Years ago
;