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?
|
jQuery's
What is the point of the first |
|||
|
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:
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:
|
|||||||||||||||||||||
|
|
The unary |
|||||||||||||
|
|
It makes sure If |
|||
|
|
i === -1check is done is becauseeq(-1)is the only case where it cannot be substituted byslice. For instanceeq(2)isslice(2,3),eq(-2)isslice(-2,-1), buteq(-1)cannot becomeslice(-1,0)since that one doesn't work... – Šime Vidas Oct 29 '11 at 13:33sliceis stupid! – Randomblue Oct 29 '11 at 13:48.slicedid differ between-0and0(which are distinct values in JavaScript). – pimvdb Oct 29 '11 at 13:50