eq: function( i ) {
var len = this.length,
j = +i + ( i < 0 ? len : 0 );
return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] );
},
i'm new to programming in general, but what is the purpose of having a single + sign infront of an expression, i've seen these in jquery library a lot.
+(expression)
these i'd understand, as they are negative:
-(1);// -1