索引是一个数字。我不明白JavaScript 中的>>是什么。
setIndex: function(index) {
var i = this.index;
this.index = index >> 0; // ?????
if (this.index < 0) {
this.index = 0;
} else if (this.index >= this.config.items.length) {
this.index = this.config.items.length - 1;
}
return (i !== this.index);
}