Methods
Properties
The Number object is an object representation of the number data type and placeholder for numeric constants.
Syntax
new Number( value )
The value argument is the sought numerical value for the object.
Example
JavaScript creates Number objects as required from numerical values. It is rarely necessary to create Number objects explicitly.
The primary purposes for the Number object are to collect its properties into one object, and to allow numbers to be converted into strings via the toString method.
See also: Math Object, new Operator |