我找到了这段代码,但我不明白参数中注释块的目的:
if (!Array.prototype.some)
{
Array.prototype.some = function(fun /*, thisp*/)
{
var len = this.length;
if (typeof fun != "function")
throw new TypeError();
var thisp = arguments[1];
for (var i = 0; i < len; i++)
{
if (i in this && fun.call(thisp, this[i], i, this))
return true;
}
return false;
};
}
在我看来,它可能是正常的第二个参数,然后可以删除该行:
var thisp = arguments[1];