查看Underscore.js
代码,更具体地说,查看_.indexOf()
函数(查找带有评论的代码here)
_.indexOf = function(array, item, isSorted) {
var i = 0, length = array && array.length;
if (typeof isSorted == 'number') {
i = isSorted < 0 ? Math.max(0, length + isSorted) : isSorted;
} else if (isSorted && length) {
i = _.sortedIndex(array, item);
return array[i] === item ? i : -1;
}
if (item !== item) {
return _.findIndex(slice.call(array, i), _.isNaN);
}
for (; i < length; i++) if (array[i] === item) return i;
return -1;
};
我注意到if(item !== item){...}
声明,但我没有达到目的。 items
是一个参数,并且在函数内部没有更改。变量何时会与自身不同?
我错过了什么吗?
答案 0 :(得分:4)
IEEE-754 NaNs不等于他们自己。 if
语句正在检查item
是否为NaN。如果是,则该函数需要使用特殊逻辑,因为array[i] === item
的搜索循环测试将不起作用。
有关进一步的讨论,请参阅Why is NaN not equal to NaN?和What is the rationale for all comparisons returning false for IEEE754 NaN values?
答案 1 :(得分:2)
数字常量NaN
永远不会===
到另一个值,包括它自己。因此,这是一种在没有函数调用的情况下测试NaN
的方法。绝对任何其他item
的值都会测试等于它自己:
undefined
===
至undefined
null
===
至null
===
自身(仅自身!)