Tofixed () method of Number object in JavaScript _javascript tips

Source: Internet
Author: User

Definitions and usage

The ToFixed () method can be rounded to a number that specifies the number of decimal places.

Grammar

numberobject.tofixed (num) parameter description

Num required. Specify the number of digits, which are values between 0 ~ 20, including 0 and 20, and some implementations can support a larger range of values. If this argument is omitted, 0 is substituted.

return value

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

Thrown

Throws an exception rangeerror when NUM is too small or too large. The value between 0 ~ 20 does not throw the exception. Some implementations support a larger or smaller range of values.

Throws a TypeError exception when the object that calls the method is not number.

Instance

In this case, we'll 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

The above JavaScript number object of the tofixed () method is small series to share all the content, hope to give you a reference, but also hope that we support the cloud habitat community.

Related Article

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.