Pages

Javascript Number - valueOf()

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 
 
+JavaScript Frameworks Links +Javascript Development  +JavascriptU 
  +Javascript Problems   +javaScript is a creek in West Virginia in the summer  

No comments:

Flag Counter
| Copyright © 2013 Remote Tutor