Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Why avoid increment (“++”) and decrement (“--”) operators in JavaScript?
The “unexpected ++” error in jslint

jslint.com is giving me the error:

Unexpected '++'.

for this line:

for (i = 0; i < l; ++i) {

I tried i++ but no go.

share|improve this question
Did already ...i++ – morph_master_flex Aug 16 '12 at 22:23
1  
Try i+=1? ......... – Erty Aug 16 '12 at 22:23
1  
There must be more to this than what you've shown.. – Mike Christensen Aug 16 '12 at 22:24
Because of rules like this, I use jshint.com try it out – Paul Aug 16 '12 at 22:26
1  
show 1 more comment

marked as duplicate by zzzzBov, Felix Kling, AresAvatar, James Allardice, Jürgen Thelen Aug 17 '12 at 2:30

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

JSLint does not like the increment and decrement operators. Replace it with i += 1 or add the plusplus: true directive to the top of your file (if you're not sure how to set JSLint directives, here's an example. They are set in a normal comment at the top of your file):

/*jslint plusplus: true */

From the JSLint docs:

The ++ (increment) and -- (decrement) operators have been known to contribute to bad code by encouraging excessive trickiness. They are second only to faulty architecture in enabling to viruses and other security menaces.

Completely ridiculous rule? You can make your own mind up...

share|improve this answer
1  
Wow, jslint... you have disappointed me – TheZ Aug 16 '12 at 22:25
4  
this is bad English..... faulty architecture in enabling to viruses – morph_master_flex Aug 16 '12 at 22:26
2  
Yea, I agree. This is crap. i++; has been used since the beginning of time.. – Mike Christensen Aug 16 '12 at 22:27
1  
@MikeChristensen, i++ has been abused since programmers started learning they could squish more into one line than was reasonable. The whole point of linting is to make code more expressive. If you know the algorithm is sound and it uses ++, then ignore the warning. It is just a warning. – zzzzBov Aug 16 '12 at 22:30
1  
It's because of confusing errors like this that I am gradually building up a comprehensive set of explanations of JSLint errors. Unfortunately this one isn't on there yet. It's all on GitHub, so if anyone feels like adding stuff in, have a look: jslinterrors.com – James Allardice Aug 16 '12 at 22:34
show 2 more comments

Try: for (var i = 0; i < l; i++) {

If that doesn't work, see if i is defined by typing i in console and seeing the response.

share|improve this answer

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