JavaScript参考手册
Number
Number.POSITIVE_INFINITY
Number.POSITIVE_INFINITY属性表示正无穷大。
不必创建一个Number实例,可使用 Number.POSITIVE_INFINITY 来访问该静态属性。
| Number.POSITIVE_INFINITY属性的属性特性 |
|:----|
| Writable | no |
| Enumerable | no |
| Configurable | no |
描述
Number.POSITIVE_INFINITY 的值同全局对象Infinity属性的值相同。
该值的表现同数学上的无穷大有点儿不同:
- 任何正值,包括
POSITIVE_INFINITY,乘以POSITIVE_INFINITY为POSITIVE_INFINITY。
- 任何负值,包括
NEGATIVE_INFINITY,乘以POSITIVE_INFINITY为NEGATIVE_INFINITY。
- 0 乘以
POSITIVE_INFINITY为 NaN。
- NaN 乘以
POSITIVE_INFINITY为 NaN。
-
POSITIVE_INFINITY, divided by any negative value exceptNEGATIVE_INFINITY, isNEGATIVE_INFINITY.
-
POSITIVE_INFINITY除以POSITIVE_INFINITY以外的任何正值为POSITIVE_INFINITY。
-
POSITIVE_INFINITY除以NEGATIVE_INFINITY或POSITIVE_INFINITY为 NaN。
- 任何数除以
POSITIVE_INFINITY为 0。
您将使用该Number.POSITIVE_INFINITY属性指示在成功的情况下返回有限数字的错误条件。注意,isFinite在这种情况下更合适。
示例
使用POSITIVE_INFINITY
下例中,赋值给变量bigNumber一个大于 JavaScript 中最大值的值。当 if语句执行时,变量bigNumber值为 "Infinity", 因此在继续执行代码前,为变量bigNumber设置一个容易管理的值。
var bigNumber = Number.MAX_VALUE * 2;
if (bigNumber == Number.POSITIVE_INFINITY) {
bigNumber = returnFinite();
}
规范
Specification |
Status |
Comment |
|---|---|---|
ECMAScript 1st Edition (ECMA-262) |
Standard |
Initial definition. Implemented in JavaScript 1.1. |
ECMAScript 5.1 (ECMA-262)The definition of 'Number.POSITIVE_INFINITY' in that specification. |
Standard |
|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of 'Number.POSITIVE_INFINITY' in that specification. |
Standard |
|
ECMAScript Latest Draft (ECMA-262)The definition of 'Number.POSITIVE_INFINITY' in that specification. |
Draft |
|
浏览器兼容性
Feature |
Chrome |
Firefox |
Edge |
Internet Explorer |
Opera |
Safari |
|---|---|---|---|---|---|---|
Basic Support |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
Feature |
Android |
Chrome for Android |
Edge mobile |
Firefox for Android |
IE mobile |
Opera Android |
iOS Safari |
|---|---|---|---|---|---|---|---|
Basic Support |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
Number相关
JavaScript 是一种高级编程语言,通过解释执行,是一门动态类型,面向对象(基于原型)的解释型语言。它已经由ECMA(欧洲电脑制造商协会)通过 ECMAScript 实现语言的标准化。它被世界上的绝大多数网站所使用,也被世界主流浏览器( Chrome、IE、FireFox、Safari、Opera )支持。JavaScript 是一门基于原型、函数先行的语言,是一门多范式的语言,它支持面向对象编程,命令式编程,以及函数式编程。它提供语法来操控文本、数组、日期以及正则表达式等,不支持 I/O,比如网络
加载中,请稍侯......