• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • Number.POSITIVE_INFINITY

    Number.POSITIVE_INFINITY属性表示正无穷大。

    不必创建一个Number实例,可使用Number.POSITIVE_INFINITY来访问该静态属性。

    Number.POSITIVE_INFINITY属性的属性特性:
    writablefalse
    enumerablefalse
    configurablefalse

    描述

    Number.POSITIVE_INFINITY的值同全局对象Infinity属性的值相同。

    该值的表现同数学上的无穷大有点儿不同:

    • 任何正值,包括POSITIVE_INFINITY,乘以POSITIVE_INFINITYPOSITIVE_INFINITY
    • 任何负值,包括NEGATIVE_INFINITY,乘以POSITIVE_INFINITYNEGATIVE_INFINITY
    • 0 乘以POSITIVE_INFINITY为 NaN。
    • NaN 乘以POSITIVE_INFINITY为 NaN。
    • POSITIVE_INFINITY除以NEGATIVE_INFINITY以外的任何负值为NEGATIVE_INFINITY
    • POSITIVE_INFINITY除以POSITIVE_INFINITY以外的任何正值为POSITIVE_INFINITY
    • POSITIVE_INFINITY除以NEGATIVE_INFINITYPOSITIVE_INFINITY为 NaN。
    • 任何数除以POSITIVE_INFINITY为 0。

    You might use the Number.POSITIVE_INFINITY property to indicate an error condition that returns a finite number in case of success. Note, however, that isFinite would be more appropriate in such a case.

    示例

    下例中,赋值给变量bigNumber一个大于 JavaScript 中最大值的值。当if语句执行时,变量bigNumber值为"Infinity",因此在继续执行代码前,为变量bigNumber设置一个容易管理的值。

    var bigNumber = Number.MAX_VALUE * 2
    if (bigNumber == Number.POSITIVE_INFINITY) {
     bigNumber = returnFinite();
    }