什么是>>在JavaScript?

时间:2013-08-09 09:25:24

标签: javascript

索引是一个数字。我不明白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);
}

1 个答案:

答案 0 :(得分:2)

x >> y表示将x的位置向右移y个位置<<表示向左移位。

Read more about bitwise operators and see some examples here.