Examples of js rounding mathematical functions round

Source: Internet
Author: User

The round Function in js can be used to round a number. It calculates the first digit after the decimal point.
The round function can be used to round the number. It is a rounding function. Let's look at the round Syntax:
Copy codeThe Code is as follows:
Math. round (number)

Below are several examples:
Copy codeThe Code is as follows:
Document. write (Math. round (2.65); // print 3
Document. write (Math. round (7.05); // print 7
Documents. write (Math. round (-2.65); // print-3
Document. write (Math. round (-8.15); // print-8
Document. write (Math. round (11.65); // print 12

The rounding of the round function is only for the first digit after the decimal point. If you want to target other digits after the decimal point, We can first multiply the number by an integer multiple of 10, and then divide it by the same number:
Copy codeThe Code is as follows:
Var my_val = 11.257;
Var my_val = 11.254;
Document. write (Math. round (my_val * 100)/100 );
// Print 11.25

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.