Property/Method | Description |
MAX_VALUE | Specifies the largest value a number can have. |
MIN_VALUE | Specifies the smallest value a number can have without being equal to 0. |
NaN | Stands for Not a Number. Represents a value that is not equal to any numeric value. |
NEGATIVE_INFINITY | A special value that represents a negative infinity value. |
POSITIVE_INFINITY | A special value that represents a positive infinity value. |
prototype | Represents the prototype for the number class. |
toSource() | Returns a string representation of the number object. |
toString() | Returns a string representing the specified number object. |
valueOf() | Returns the primitive value of a number object as a number data type. |