javascript – MDN“Object.is”替代提案

前端之家收集整理的这篇文章主要介绍了javascript – MDN“Object.is”替代提案前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看过 the MDN page on the “Object.is” method.
它为不提供此方法的浏览器提供了替代代码
if (!Object.is) {
    Object.is = function(v1,v2) {
        if (v1 === 0 && v2 === 0) {
            return 1 / v1 === 1 / v2;
        }
        if (v1 !== v1) {
            return v2 !== v2;
        }
        return v1 === v2;
    };
}

问题很简单:第二个“如果”何时可以成立?

感谢您的关注.

解决方法

它有点写在 the same article

This is also not the same as being equal according to the ===
operator. The === operator (and the == operator as well) treats the
number values -0 and +0 as equal,and it treats Number.NaN as not
equal to NaN
.

其中的逻辑是楠!==楠在其中!==操作符返回在同一个变量真实,所以它必须是有关NaN的比较的唯一案例.然后,它确实对V2相同的检查,并返回基于结果的假真:如果V2相比是真实的,它是关于NaN的比较为NaN,那么返回true,如果不是则返回false,因为NaN的是从来没有一样东西ISN” t NaN.

原文链接:https://www.f2er.com/js/157242.html

猜你在找的JavaScript相关文章