Skip to main content
Version: 3.13.0

Number.POSITIVE_INFINITY

The Number.POSITIVE_INFINITY property represents the positive Infinity value.

Value

The same as the value of the global Infinity property.

Description

The Number.POSITIVE_INFINITY value behaves slightly differently than mathematical infinity:

  • Any positive value, including Number.POSITIVE_INFINITY, multiplied by Number.POSITIVE_INFINITY is Number.POSITIVE_INFINITY.
  • Any negative value, including Number.NEGATIVE_INFINITY, multiplied by Number.POSITIVE_INFINITY is Number.NEGATIVE_INFINITY.
  • Any positive number divided by Number.POSITIVE_INFINITY is positive zero (as defined in IEEE 754).
  • Any negative number divided by Number.POSITIVE_INFINITY is negative zero (as defined in IEEE 754.
  • Zero multiplied by Number.POSITIVE_INFINITY is NaN.
  • NaN multiplied by Number.POSITIVE_INFINITY is NaN.
  • Number.POSITIVE_INFINITY, divided by any negative value except Number.NEGATIVE_INFINITY, is Number.NEGATIVE_INFINITY.
  • Number.POSITIVE_INFINITY, divided by any positive value except Number.POSITIVE_INFINITY, is Number.POSITIVE_INFINITY.
  • Number.POSITIVE_INFINITY, divided by either Number.NEGATIVE_INFINITY or Number.POSITIVE_INFINITY, is NaN.
  • Number.POSITIVE_INFINITY > x is true for any number x that isn't Number.POSITIVE_INFINITY.

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 NaN would be more appropriate in such a case.

Because Number.POSITIVE_INFINITY is a static property of Number, you always use it as Number.POSITIVE_INFINITY, rather than as a property of a number value.