The value of POSITIVE_INFINITY is the same as the global object's Infinity
property. It is the value that is greater than any number in JavaScript.
It is a non-writable, non-enumerable, and non-configurable property.
The syntax to access the POSITIVE_INFINITY
property is:
Number.POSITIVE_INFINITY
POSITIVE_INFINITY
is accessed using the Number
class name.
Example: Using Number.POSITIVE_INFINITY
value = Number.POSITIVE_INFINITY;
console.log(value); // Infinity
Output
Infinity
Note: JavaScript displays the POSITIVE_INFINITY value as Infinity.
Recommended Reading: