问题很简单:
Infinity == Infinity
>> true
Infinity == 1/0
>> true
Infinity == Infinity == 1/0
>> false
为什么最后一次评估是
false
? 最佳答案
因为Infinity == Infinity == 1/0
基本上是
(Infinity == Infinity) == 1/0
所以
(true) == 1/0
是
false
。关于javascript - 为什么无穷大==无穷大== 1/0为假?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36496965/