This method converts a number object into a human readable string representing the number using the locale of the environment.
Its syntax is as follows −
number.toLocaleString()
Returns a human readable string representing the number using the locale of the environment.
Try the following example.
<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>
177.1234