Discussion on the accuracy of JavaScript parsefloat () method _javascript Skills

Source: Internet
Author: User
Parsefloat () method in JavaScript produces precision problems
Copy Code code as follows:

<script language= "JavaScript" >
var a = "0.11";
var b = "0.2801";
var c = "1.002";
var sum1 = parsefloat (a) + parsefloat (b) + parsefloat (c);
var sum2 = (parsefloat (a) + parsefloat (b) + parsefloat (c)). ToFixed (4)
document.write ("a+b+c=" + sum1);
document.write ("<br/>")
document.write ("a+b+c=" + sum2)
</script>

The A,b,c addition would have been 1.3921, but the sum1 result was: 1.3921000000000001, this is not the desired result, especially when calculating money, do not need such precise precision. You can use the tofixed (n) method to fix (n is the exact number of digits after a decimal).

For example: parsefloat (1.392143). toFixed (2) = 1.39.
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.