|
Answer» Here is a list of each property and their description.
- MAX_VALUE: The largest possible VALUE a NUMBER in JavaScript can have 1.7976931348623157E+308
- MIN_VALUE: The smallest possible value a number in JavaScript can have 5E-324
- NaN: Equal to a value that is not a number.
- NEGATIVE_INFINITY: A value that is LESS than MIN_VALUE.
- POSITIVE_INFINITY: A value that is greater than MAX_VALUE
- prototype: A static property of the Number object. Use the prototype property to assign new PROPERTIES and methods to the Number object in the current document
- constructor: Returns the function that created this object's INSTANCE. By default this is the Number object.
Here is a list of each property and their description.
|