Constants

Float constants.

epsilon

RES
let epsilon: float

Represents the difference between 1 and the smallest floating point number greater than 1. See Number.EPSILON on MDN.

Examples

RES
Float.Constants.epsilon

maxValue

RES
let maxValue: float

The maximum positive numeric value representable in JavaScript. See Number.MAX_VALUE on MDN.

Examples

RES
Float.Constants.minValue

minValue

RES
let minValue: float

The smallest positive numeric value representable in JavaScript. See Number.MIN_VALUE on MDN.

Examples

RES
Float.Constants.minValue

nan

RES
let nan: float

The special value "Not a Number" See NaN on MDN.

Examples

RES
Float.Constants.nan

negativeInfinity

RES
let negativeInfinity: float

The negative Infinity value See Number.NEGATIVE_INFINITY on MDN.

Examples

RES
Float.Constants.negativeInfinity

positiveInfinity

RES
let positiveInfinity: float

The positive Infinity value See Number.POSITIVE_INFINITY on MDN.

Examples

RES
Float.Constants.positiveInfinity