Description:
This method returns the primitive value of the specified number object.
Syntax:
number.valueOf() |
Here is the detail of parameters:
- NA
Return Value:
Returns the primitive value of the specified number object.
Example:
<html> <head> <title>JavaScript valueOf() Method </title> </head> <body> <script type="text/javascript"> var num = new Number(15.11234); document.write("num.valueOf() is " + num.valueOf()); </script> </body> </html> |
This will produce following result:
num.valueOf() is 15.11234 |
No comments:
Post a Comment