admin管理员组文章数量:1345292
So I checked my javascript using this: /
and if I don't wrap IF/FOR statements between { }, I get "errors" like this:
Problem at line 152 character 27: Expected '{' and instead saw 'reset()'.
or if I initialize variables inside FOR I get:
Problem at line 154 character 19: Move 'var' declarations to the top of the function.
Why are these considered errors? Shouldn't these be considered good practice instead because they actually reduce the size of the code, which for javascript is even more important than the speed of the code?
So I checked my javascript using this: http://www.jslint./
and if I don't wrap IF/FOR statements between { }, I get "errors" like this:
Problem at line 152 character 27: Expected '{' and instead saw 'reset()'.
or if I initialize variables inside FOR I get:
Problem at line 154 character 19: Move 'var' declarations to the top of the function.
Why are these considered errors? Shouldn't these be considered good practice instead because they actually reduce the size of the code, which for javascript is even more important than the speed of the code?
Share Improve this question asked May 1, 2011 at 16:35 AlexaAlexa 2251 gold badge3 silver badges7 bronze badges 11- Why is the size of the code more important for Javascript than the speed of the code? – Pekka Commented May 1, 2011 at 16:40
- @Pekka: Not following you, neither of these examples affects code speed. – T.J. Crowder Commented May 1, 2011 at 16:42
- because it doesn't run on the server. And to make a script that lags in the client's puter is very hard considering the speed of the puters of today, so speed bees less important... – Alexa Commented May 1, 2011 at 16:43
- @T.J. the OP states that the size of the code is more important than its speed. I mean to say I don't think that is true (or don't understand the reasoning behind it) – Pekka Commented May 1, 2011 at 16:43
- 1 @Alexa the size of the code is usually not important for its execution speed - it's definitely not a good paradigm to design code by. Consider that with most HTML pages, you are transferring images dozens or hundreds of times the size of all your JavaScript bined. – Pekka Commented May 1, 2011 at 16:44
6 Answers
Reset to default 10For the if
statement error, the lack of an opening brace is considered bad practice because it makes for harder maintenance. If, for example, you wanted to add another statement inside the if statement, you'd end up needing to add the braces anyway, so it makes maintenance easier just to include them in the first place.
The second error, I find a bit.. opinionated, since personally I prefer to declare variables closer to where they are used, instead of at the top of a function.
Personally, I prefer to use JSHint these days, since Crockfords Lint I find to be less about correct code, and more about Crockfords opinion of what JavaScript should look like, everyone else's opinion be damned.
JSLint remends that you wrap if and for statements in braces because it can lead to hard to track down errors if you are not careful with your indenting. For example:
if (somecondition)
step1();
step2();
From the indenting, it looks like step1() and step2() are going to execute only if somecondition is true, but in reality step2() will always run since the braces are missing.
If you are really concerned about file size, I'd suggest looking into a JS pressor like yuipressor. Most of these will remove the braces around if/for statements that don't need them. Then you can have the best of both worlds: readable code and small file sizes when it's served.
Respect tho the second issue, JSlint remends it because javascript vars are always function scoped, not block scoped. Doing this:
function func(){
var i;
alert('foo');
for(i = 0; i<3; i++){
alert(i);
}
alert(i);
}
is exactly (100% exactly!!) the same as:
function func(){
alert('foo');
for(var i = 0; i<3; i++){
alert(i);
}
alert(i);
}
So i
is not for-scoped (as in other languages). That's why jslint remends to put all vars on top of functions, so you don't get confused thinking there are block-scoped variables.
Respect of the first issue, I agree with you. I don't see it as big a problem. But JSLint sees it as a problem because, if you later add lines to your if statement and forget to put the curly braces, you'll have a logic error, as Jeff pointed out.
Before:
if (x > 10)
alert("it's obvious x is positive");
After some changes to the code:
if (x > 10)
alert("it's obvious x is positive");
alert("x is greater than 10"); //Logic error
A problem that wouldn't have happened using curly braces.
JSLint is a code quality tool aimed to reduce the number of mistakes. You know that you can only write a single statement in an if loop, without needing to wrap it with braces, but that guy doesn't. And what if you accidentally do it one day?
Reducing file-size during development is hardly necessary, that's what minifiers are for. During development you need to make the code work and make sense.
The variables at top of functions is an annoying debate of coding styles, and you can turn off notifications about it in the options.
Anyway, just ignore the errors you don't care about.
The first thing, braces on if
statements, reflects the JSLint author's belief that omitting the braces leads to maintenance issues (a belief I happen to share, but that's neither here nor there).
The second thing is actually language-specific: Putting the var
anywhere other than the top of the scope (function, or global) is actually misleading to anyone reading the code, because regardless of where you put it, it's exactly as though it were at the top of the scope. Details: Poor, misunderstood var
You ask: "Why are these considered errors?" They're much more than bad practice; they're positively malicious. That's because they encourage later bugs that will be almost impossible to find. This same death-wish omission of braces is allowed in C and C++, too, and it's just as much of an error there.
If, like me, you'd tried to save a couple of keystrokes by omitting braces and then been bitten and beaten up by your mistake, I promise you wouldn't be asking this question :-)
本文标签: javascriptthe JSLint code quality toolStack Overflow
版权声明:本文标题:javascript - the JSLint code quality tool - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802969a2541658.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论