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

jQuery's .eq() is:

eq: function( i ) {
    return i === -1 ?
        this.slice( i ) :
        this.slice( i, +i + 1 );
},

What is the point of the first + in +i + 1?

share|improve this question
2  
Note that the whole reason why the i === -1 check is done is because eq(-1) is the only case where it cannot be substituted by slice. For instance eq(2) is slice(2,3), eq(-2) is slice(-2,-1), but eq(-1) cannot become slice(-1,0) since that one doesn't work... – Šime Vidas Oct 29 '11 at 13:33
slice is stupid! – Randomblue Oct 29 '11 at 13:48
It would be nice if .slice did differ between -0 and 0 (which are distinct values in JavaScript). – pimvdb Oct 29 '11 at 13:50

3 Answers

up vote 5 down vote accepted

It's to cast the value to integer and to ensure that you are performing an integer addition instead of string concatenation.

Compare those two for example:

var i = '1';
var result = i + 1; // result = '11';
var result2 = +i + 1; // result = 2;

And to answer the question why this is not used as the first argument of the slice method, it is because the slice method internally performs the conversion. So for example the following will work as expected:

var array = [1, 2, 3];
var result = array.slice('1', '2'); // result = [2];
share|improve this answer
2  
@Randomblue, most probably because the slice method already does this cast. – Darin Dimitrov Oct 29 '11 at 13:11
4  
Hum. What if someone did eq('-1')? Then i === -1 would be false so the last part of the ternary statement would be called, which is incorrect. – Randomblue Oct 29 '11 at 13:12
4  
@Randomblue: I would consider that a bug: jsfiddle.net/pimvdb/NZdAa/1. – pimvdb Oct 29 '11 at 13:18
2  
(although tbh, the docs clearly state an integer is the expected parameter type, so if I was writing that function, I wouldn't bother with the +i in the first place...) – Matt Oct 29 '11 at 13:21
3  
@pimvdb Luckily, jQuery does define what the term "integer" means: docs.jquery.com/Types#Integer :) – Šime Vidas Oct 29 '11 at 13:38
show 6 more comments

The unary + operator coerces the operand to the Number type. The idea is to fix String values like '1', '2', '3', etc.

share|improve this answer
Why isn't the + used everywhere, then? – Randomblue Oct 29 '11 at 13:11
@Randomblue: Because +i + 1 is the only expression which performs a mathematical operation. – Felix Kling Oct 29 '11 at 13:12
@Randomblue You don't need it in the === operation since that operation already checks the type (in this case, the left operand has to be of type Number, since the right operand is of that type). – Šime Vidas Oct 29 '11 at 13:13
2  
Aha. It seems then that the case .eq('-1') is not fixed. – Randomblue Oct 29 '11 at 13:13
@Randomblue Yes, .eq('-2') and .eq('-0') work, but .eq('-1') doesn't. – Šime Vidas Oct 29 '11 at 13:19
show 4 more comments

It makes sure i gets treated as a number and not as a string.

If 3 gets treated as a string, 3 + 1 would be 31.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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