javascript – 为什么是undefined == undefined但NaN!= NaN?

参见英文答案 > What is the rationale for all comparisons returning false for IEEE754 NaN values?9个
我想知道为什么undefined == undefined但NaN!= NaN.

解决方法

因为这是 Abstract Equality Comparison AlgorithmStrict Equality Comparison Algorithm中的定义.

如果任一操作数为==或===为NaN,则返回false.

抽象

  • If Type(x) is Number,then
    • If x is NaN,return false.
    • If y is NaN,return false.
    • If x is the same Number value as y,return true.
    • If x is +0 and y is −0,return true.
    • If x is −0 and y is +0,return true.
    • Return false.

编辑:@CMS所述的不平等比较动机符合IEEE 754标准.

从以下评论中提供的维基百科链接

…The normal comparison operations however treat NaNs as unordered and compare −0 and +0 as equal. The totalOrder predicate will order these cases,and it also distinguishes between different representations of NaNs and between the same decimal floating point number encoded in different ways.

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...