JavaScript toFixed() Method
JavaScript Number Object
Definition and Usage
The toFixed() method formats a number to use a specified number of trailing decimals.
The number is rounded up, and nulls are added after the decimal point
(if
needed), to create the desired decimal length.
Syntax
| Parameter |
Description |
| x |
Optional. The number of digits after the decimal point. Default is 0 (no
digits after the decimal point) |
Browser Support

The toFixed() method is supported in all major browsers.
Example
Example
Format a number:
<script type="text/javascript">
var num = new Number(13.3714);
document.write(num.toFixed()+"<br />");
document.write(num.toFixed(1)+"<br />");
document.write(num.toFixed(3)+"<br />");
document.write(num.toFixed(10));
</script>
|
The output of the code above will be:
Try it yourself »
|
JavaScript Number Object
Create a free Flash website with our simple, online web design editing platform. Stunning templates
and user-friendly tools make website building easy and fun.
Start Creating your free website now!

The Altova MissionKit is an integrated suite of tools ideal for:
- XML development
- Web & Web services development
- Data mapping & integration
- Rendering & publishing XML & database data
- XBRL validation, taxonomy editing, transformation & rendering
The MissionKit for XML Developers includes XMLSpy® - the industry-leading XML editor; MapForce® - a
graphical data mapping, conversion, and integration tool; StyleVision® - a visual XSLT stylesheet designer;
DiffDog® - an XML-aware diff/merge tool; and 2 additional tools.
Try all 6 products free for 30 days!
Download a fully-functional free trial
|
|
|
|