The _number
operator can be used to run javascript Number
methods.
Operator methods:
_number.EPSILON
(void): number
The _number.EPSILON
property represents the smallest interval between two representable numbers.. See MDN for more details and examples.
_number.MAX_SAFE_INTEGER
(void): number
The _number.MAX_SAFE_INTEGER
property represents the maximum safe integer in JavaScript (2^53 - 1). See MDN for more details and examples.
_number.MAX_VALUE
(void): number
The _number.MAX_VALUE
property represents the largest positive representable number. See MDN for more details and examples.
_number.MIN_SAFE_INTEGER
(void): number
The _number.MIN_SAFE_INTEGER
property represents the minimum safe integer in JavaScript (-(2^53 - 1)). See MDN for more details and examples.
_number.MIN_VALUE
(void): number
The _number.MIN_VALUE
property represents the smallest positive representable number — that is, the positive number closest to zero (without actually being zero). See MDN for more details and examples.
_number.NaN
(void): number
The _number.NaN
property represents the special "Not a Number" value. See MDN for more details and examples.
_number.NEGATIVE_INFINITY
(void): number
The _number.NEGATIVE_INFINITY
property represents negative infinity. Returned on overflow. See MDN for more details and examples.
_number.POSITIVE_INFINITY
(void): number
The _number.POSITIVE_INFINITY
property represents positive infinity. See MDN for more details and examples.
_number.isFinite
(void): number
The _number.isFinite
method is used to determine whether the passed value is a finite number. See MDN for more details and examples.
_number.isInteger
(void): number
The _number.isInteger
method is used to determine whether the passed value is an integer. See MDN for more details and examples.
_number.isNaN
(void): number
The _number.isNaN
method is used to determine whether the passed value is NaN. See MDN for more details and examples.
_number.isSafeInteger
(void): number
The _number.isSafeInteger
method is used to determine whether the passed value is a safe integer (number between -(2^53 - 1) and 2^53 - 1). See MDN for more details and examples.
_number.parseFloat
(void): number
The _number.parseFloat
method parses an argument and returns a floating point number. If a number cannot be parsed from the argument, it returns NaN. See MDN for more details and examples.
_number.parseInt
(void): number
The _number.parseInt
method parses a string argument and returns an integer of the specified radix or base. If a number cannot be parsed from the argument, it returns NaN. See MDN for more details and examples.
_number.toExponential
(void): number
The _number.toExponential
method returns a string representing the Number object in exponential notation. See MDN for more details and examples.
_number.toFixed
(void): number
The _number.toFixed
method formats a number using fixed-point notation. See MDN for more details and examples.
_number.toLocaleString
(void): number
The _number.toLocaleString
method returns a string with a language-sensitive representation of this number. See MDN for more details and examples.
_number.toPrecision
(void): number
The _number.toPrecision
method returns a string representing the Number object to the specified precision. See MDN for more details and examples.
_number.toString
(void): number
The _number.toString
method returns a string representing the specified Number object. See MDN for more details and examples.