gpt4 book ai didi

javascript: Triple > - 是什么意思

转载 作者:行者123 更新时间:2023-11-28 02:11:40 26 4
gpt4 key购买 nike

我正在搜索 IE8 的 indexOf polyfill,我发现了这个 question 。接受的答案建议使用以下代码:

if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(elt /*, from*/)
{
var len = this.length >>> 0;

var from = Number(arguments[1]) || 0;
from = (from < 0)
? Math.ceil(from)
: Math.floor(from);
if (from < 0)
from += len;

for (; from < len; from++)
{
if (from in this &&
this[from] === elt)
return from;
}
return -1;

};}

我以前从未见过三元组>:

var len = this.length >>> 0;

什么是?

最佳答案

这是Zero-fill right shift位运算符。

关于javascript: Triple > - 是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16990957/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com