THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

JavaScript POSITIVE_INFINITY Property

JavaScript Number Reference JavaScript Number Reference

Example

Return positive infinity:

Number.POSITIVE_INFINITY;

The result will be:

Infinity
Try it yourself »

More "Try it Yourself" examples below.


Definition and Usage

The POSITIVE_INFINITY property represents positive infinity.

Positive infinity can be explained as something that is higher than any other number.


Always Use Number.POSITIVE_INFINITY

POSITIVE_INFINITY a static property of the JavaScript Number object.

You can only use it as Number.POSITIVE_INFINITY.

Using x.POSITIVE_INFINITY, where x is a number or a Number object, will return undefined:

Example

var x = 100;
x.NEGATIVE_INFINITY;

The value of x will be:

undefined
Try it yourself »

Browser Support

Property
POSITIVE_INFINITY Yes Yes Yes Yes Yes

Syntax

Number.POSITIVE_INFINITY;

Technical Details

Return Value: The numeric value: Infinity
JavaScript Version: 1.1

Examples

More Examples

Example

Create a positive infinity:

var n = (Number.MAX_VALUE) * 2;

The result of n will be:

Infinity
Try it yourself »

JavaScript Number Reference JavaScript Number Reference