索引是一个数字。我不明白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);
}
答案 0 :(得分:2)
x >> y
表示将x
的位置向右移y
个位置<<
表示向左移位。
Read more about bitwise operators and see some examples here.