本文介绍了无限是javascript中的一些数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
alert(1/0)
提醒无限
和提醒(1 / -0 )
警告 -Infinity
。 alert(-1 / -0)
提醒 Infinity
,正如我在使用 real进行某些操作时的预期数字。我不能说无穷大是一个可衡量的价值。 javascript是否认为它是某个数字?
alert(1/0)
alerts Infinity
and alert(1/-0)
alerts -Infinity
. alert(-1/-0)
alerts Infinity
, as I could expect when doing some operations with real numbers. I can't say that infinity is a measurable value. Does javascript think it is some number?
推荐答案
是, Infinity
和 -Infinity
是数字类型的特殊值一>。从ES5规范:
Yes, Infinity
and -Infinity
are special values of the Number type. From the ES5 spec:
另请注意 NaN
也是Number类型的值,尽管它是not a number的首字母缩写词。
Also note that NaN
is a value of the Number type too, despite it being an acronym for "not a number".
这篇关于无限是javascript中的一些数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!