Pages

Javascript Number - toLocaleString()

4/4/14

Description:

This method converts a number object, into a human readable string representing the number using the locale of the environment.

Syntax:

number.toLocaleString()
Here is the detail of parameters:
  • NA:

Return Value:

Returns a human readable string representing the number using the locale of the environment.

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>
This will produce following result:
177.1234

No comments:

Post a Comment

Related Posts