问题很简单:

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/

10-12 01:57