gpt4 book ai didi

javascript - 无穷大是javascript中的某个数字吗?

转载 作者:数据小太阳 更新时间:2023-10-29 04:33:36 31 4
gpt4 key购买 nike

alert(1/0) 警报 Infinityalert(1/-0) 警报 -Infinity . alert(-1/-0) 提醒 Infinity,正如我在使用 实数 进行一些操作时所期望的那样。我不能说无穷大是一个可测量的值。 javascript 是否认为它是某个数字?

最佳答案

是的,Infinity-Infinityspecial values of the Number type .来自 ES5 规范:

There are two other special values, called positive Infinity and negative Infinity. For brevity, these values are also referred to for expository purposes by the symbols +∞ and −∞, respectively. (Note that these two infinite Number values are produced by the program expressions +Infinity (or simply Infinity) and -Infinity.)

另请注意,NaN 也是 Number 类型的值,尽管它是“非数字”的首字母缩写词。

关于javascript - 无穷大是javascript中的某个数字吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24166320/

31 4 0
文章推荐: c# - dbType NVarChar 对于此构造函数无效
文章推荐: javascript - AngularJs:从未调用过的指令
文章推荐: c# - List 上的 Parallel.ForEach 线程安全