C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Number toString() methodThe JavaScript number toString() method converts the given number into the string and returns it. SyntaxThe toString() method is represented by the following syntax: Number.toString(radix) Parameterradix - It is optional. An integer between 2 and 36 that represents the numeral system to be used. ReturnThe given number in the form of string. JavaScript Number toString() method exampleHere, we will understand toString() method through various examples. Example 1Let's see a simple example of toString() method. <script> var a=50; var b=-50; var c=50.25; document.writeln(a.toString()+"<br>"); document.writeln(b.toString()+"<br>"); document.writeln(c.toString()); </script> Output: 50 -50 50.25 Example 2Let's see an example to add two numbers with and without using toString() method. <script> var a=50; var b=30; var c=a+b; document.writeln("Before invoking toString(): "+c+"<br>"); var c=a.toString()+b.toString(); document.writeln("After invoking toString(): "+c); </script> Output: Before invoking toString(): 80 After invoking toString(): 5030 Example 3In this example, we will pass radix argument within toString() method. <script> var a=12; document.writeln(a.toString(2)+"<br>"); document.writeln(a.toString(8)+"<br>"); document.writeln(a.toString(16)); </script> Output: 1100 14 c
Next TopicJavaScript Number
|