JavaScript toFixed () method

Source: Internet
Author: User

Definition and usage
The ToFixed () method rounds numbers to a number that specifies the number of decimal digits.

Grammar
Numberobject.tofixed (num)

Parameter description
Num required. Specifies the number of decimal places, which are values between 0 and 20, including 0 and 20, and some implementations can support a larger range of values. If this argument is omitted, 0 will be used instead.

return value
Returns a string representation of numberobject, with no exponential notation, and a fixed num digit number after the decimal point. If necessary, the number is rounded, or it can be topped with 0 so that it reaches the specified length. If NUM is greater than le+21, the method only calls Numberobject.tostring () and returns the string represented by exponential notation.

Thrown
Throws an exception rangeerror when NUM is too small or too large. A value between 0 and 20 does not throw the exception. Some implementations support values in a larger range or a smaller range.
The TypeError exception is thrown when the object calling the method is not number.


Instance
In this example, we will round the number to a number with only one decimal:
Show the number 13.37 with one decimal:
<script type= "Text/javascript" >
var num = new number (13.37);
document.write (num.tofixed (1))
</script>
Output:
Show the number 13.37 with one decimal:
13.4

JavaScript toFixed () method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.