Copyright © tutorialspoint.com
This method converts a number object, into a human readable string representing the number using the locale of the environment.
number.toLocaleString() |
Here is the detail of parameters:
NA:
Returns a human readable string representing the number using the locale of the environment.
<html> <head> <title>JavaScript toLocaleString() Method </title> </head> <body> <script type="text/javascript"> var num = new Number(177.1234); document.write( num.toLocaleString()); </script> </body> </html> |
This will produce following result:
177.1234 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com