JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript Number - valueOf()
Description:
This method returns the primitive value of the specified number object.
Syntax:
Here is the detail of parameters:
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
|
To understand it in better way you can Try it yourself.
|
|
|