在许多站点中,函数和对象返回值。为什么return
重要?
Slider.prototype.setCurrent = function( dir ) {
var pos = this.current;
pos += ( ~~( dir === 'next' ) || -1 );
this.current = ( pos < 0 ) ? this.imgsLen - 1 : pos % this.imgsLen;
return pos;
}
在上面的例子中,为什么不返回this.current
?