JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript Number - toString()
Description:
This method returns a string representing the specified object. The toString method parses its first argument, and attempts to return a string representation in the specified radix (base).
Syntax:
number.toString( [radix] )
|
Here is the detail of parameters:
Return Value:
Returns a string representing the specified Number object.
Example:
<html>
<head>
<title>JavaScript toString() Method </title>
</head>
<body>
<script type="text/javascript">
var num = new Number(15);
document.write("num.toString() is " + num.toString());
document.write("<br />");
document.write("num.toString(2) is " + num.toString(2));
document.write("<br />");
document.write("num.toString(4) is " + num.toString(4));
document.write("<br />");
</script>
</body>
</html>
|
This will produce following result:
num.toString() is 15
num.toString(2) is 1111
num.toString(4) is 33
|
To understand it in better way you can Try it yourself.
|
|
|