在filter
Mozilla 网站的文档页面中,我看到了>>>
操作员:
var t = Object(this),
len = t.length >>> 0, //here
res, thisp, i, val;
if (typeof fun !== 'function') {
throw new TypeError();
}
在这里您可以找到完整的文档:https ://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter
这个运算符是什么,它的作用是什么?