什么意思>>> javascript中的字符

时间:2014-06-19 07:44:40

标签: javascript ecmascript-5 ecma262

今天我正在阅读有关MDN的一些文章并找到一些新内容。在第11行的这个link我发现了这样的事情:

 var t = Object( this ), len = t.length >>> 0, k = 0, value;

完整的代码是:

if ( 'function' !== typeof Array.prototype.reduce ) {
 Array.prototype.reduce = function( callback /*, initialValue*/ ) {
'use strict';
if ( null === this || 'undefined' === typeof this ) {
  throw new TypeError(
     'Array.prototype.reduce called on null or undefined' );
}
if ( 'function' !== typeof callback ) {
  throw new TypeError( callback + ' is not a function' );
}
var t = Object( this ), len = t.length >>> 0, k = 0, value;
if ( arguments.length >= 2 ) {
  value = arguments[1];
} else {
  while ( k < len && ! k in t ) k++; 
  if ( k >= len )
    throw new TypeError('Reduce of empty array with no initial value');
  value = t[ k++ ];
}
for ( ; k < len ; k++ ) {
  if ( k in t ) {
     value = callback( value, t[k], k, t );
  }
}
return value;
};
}

那么第11行中的>>>字符是什么。

1 个答案:

答案 0 :(得分:0)

>>>是零填充右移运算符。 https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators#Unsigned_right_shift

为了使用运算符,JavaScript必须将参数转换为整数。移位0位对整数没有影响,因此在此程序中,移位仅用于确保正确的类型。