
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Format a Rounded Number to N Decimals Using JavaScript
Use the toFixed() method to format a rounded number to N decimals. The toFixed() method formats a number with a specific number of digits to the right of the decimal.
Example
You can try to run the following code to form a rounded number to N decimals −
<html> <head> <title>JavaScript toFixed() Method</title> </head> <body> <script> var num = 15; document.write("num.toFixed() is : " + num.toFixed()); document.write("<br />"); document.write("num.toFixed() is : " + num.toFixed(2)); document.write("<br />"); document.write("num.toFixed() is : " + num.toFixed(1)); document.write("<br />"); </script> </body> </html>
Output
num.toFixed() is : 15 num.toFixed() is : 15.00 num.toFixed() is : 15.0
Advertisements