From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript Functions
The Number() function converts the object argument to a number that represents the object's value.
If the value cannot be converted to a legal number, NaN is returned.
| Number(object) |
| Parameter | Description |
|---|---|
| object | Optional. A JavaScript object. If no argument is provided, it returns 0. |
Note: If the parameter is a Date object, the Number() function returns the number of milliseconds since midnight January 1, 1970 UTC.
ExampleConvert different object values to their numbers:
The output of the code above will be: Try it yourself » |
JavaScript Functions
From http://www.w3schools.com (Copyright Refsnes Data)