W3Schools.com

JavaScript toFixed() Method

Number Object Reference 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

number.toFixed(x)

Parameter Description
x Optional. The number of digits after the decimal point. Default is 0 (no digits after the decimal point)


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

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 »


Number Object Reference JavaScript Number Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
Download XML Editor
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE