Copyright © tutorialspoint.com
This method returns the primitive value of the specified number object.
number.valueOf() |
Here is the detail of parameters:
NA
Returns the primitive value of the specified number object.
<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 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com