js addition, subtraction, multiplication and division precise calculation method example code

js addition, subtraction, multiplication and division precise calculation method example code

Preface

Because computer numbers are floating point, the data obtained during the calculation process is usually not accurate, so it is a headache to do some array operations. Here we will write a method for accurate calculation.

The first is addition (here we take the addition of two data as an example)

function add(arg1, arg2) {

	 arg1 = arg1.toString(), arg2 = arg2.toString(); // Convert the incoming data into a string var arg1Arr = arg1.split("."), // Split the decimal data from the decimal point arg2Arr = arg2.split("."),
   d1 = arg1Arr.length == 2 ? arg1Arr[1] : "", // Get the length of the decimal point of the first number d2 = arg2Arr.length == 2 ? arg2Arr[1] : ""; // Get the length of the decimal point of the second number var maxLen = Math.max(d1.length, d2.length); // Get the larger value of the decimal point length var m = Math.pow(10, maxLen); // This represents the power of the decimal point length of 10. That is, if the decimal point length is 2, the value of m is 100. If the decimal point length is 3, the value of m is 1000. If you don't understand, please look up the api yourself
  var result = Number(((arg1 * m + arg2 * m) / m).toFixed(maxLen)); // Convert the decimals to integers and add them together, then remove the multiples of the two numbers multiplied and remove the decimal point.var d = arguments[2]; // The user can decide whether to pass the third parameter to define the length of decimals to be retained.return typeof d === "number" ? Number((result).toFixed(d)) : result;
}

add(12.123, 12)

Then comes subtraction (subtraction is actually an array plus the negative of another number, so the logic is the same as addition)

function sun(arg1, arg2) {
return add(arg1, -arg2)
}

Next is multiplication

function mul(arg1, arg2) {
var r1 = arg1.toString(), // Convert the incoming data into a string r2 = arg2.toString(),
m, resultVal, d = arguments[2];
m = (r1.split(".")[1] ? r1.split(".")[1].length : 0) + (r2.split(".")[1] ? r2.split(".")[1].length : 0); // Get the sum of the decimal places of two numbers // The product algorithm is to remove the decimal point, do integer multiplication and then remove all the powers of 10 resultVal = Number(r1.replace(".", "")) * Number(r2.replace(".", "")) / Math.pow(10, m);

return typeof d !== "number" ? Number(resultVal) : Number(resultVal.toFixed(parseInt(d)));
}

Finally, subtraction (division and multiplication are the opposite process, so I won’t explain it in detail)

function div(arg1, arg2) {
     var r1 = arg1.toString(),
      r2 = arg2.toString(),
      m, resultVal, d = arguments[2];
     m = (r2.split(".")[1] ? r2.split(".")[1].length : 0) - (r1.split(".")[1] ? r1.split(".")[1].length : 0);
     resultVal = Number(r1.replace(".", "")) / Number(r2.replace(".", "")) * Math.pow(10, m);
     return typeof d !== "number" ? Number(resultVal) : Number(resultVal.toFixed(parseInt(d)));
    }

Summarize

This is the end of this article about the precise calculation methods of addition, subtraction, multiplication and division in js. For more relevant content on precise calculation of addition, subtraction, multiplication and division in js, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript solution to the loss of precision in addition, subtraction, multiplication and division of decimals
  • HTML+JS implements simple calculator code (addition, subtraction, multiplication and division)
  • Solution to the problem of loss of precision in js addition, subtraction, multiplication and division
  • Detailed explanation of js addition, subtraction, multiplication and division precise calculation
  • Example of calculator for addition, subtraction, multiplication and division implemented by JS
  • js precise addition, subtraction, multiplication and division examples
  • Simple examples of javascript addition, subtraction, multiplication and division
  • Super simple JS calculator example explanation (implementing addition, subtraction, multiplication and division)

<<:  Detailed explanation of asynchronous programming knowledge points in nodejs

>>:  Example code for implementing concurrent request control in JavaScript/TypeScript

Recommend

Summary of basic knowledge points of MySql database

Table of contents Basic database operations 2) Vi...

HTML tags list and usage instructions

List of HTML tags mark type Name or meaning effec...

How to make if judgment in js as smooth as silk

Table of contents Preface Code Implementation Ide...

CSS positioning layout (position, positioning layout skills)

1. What is positioning? The position attribute in...

Docker binding fixed IP/cross-host container mutual access operation

Preface Previously, static IPs assigned using pip...

Security configuration and detection of SSL after the website enables https

It is standard for websites to enable SSL nowaday...

JavaScript BOM location object + navigator object + history object

Table of contents 1. Location Object 1. URL 2. Pr...

Detailed explanation of VUE's data proxy and events

Table of contents Review of Object.defineProperty...

Implementation steps for building multi-page programs using Webpack

It is very common to use webpack to build single-...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

Share 5 helpful CSS selectors to enrich your CSS experience

With a lot of CSS experience as a web designer, we...

Three ways to configure Nginx virtual hosts (based on domain names)

Nginx supports three ways to configure virtual ho...

A collection of possible problems when migrating sqlite3 to mysql

Brief description Suitable for readers: Mobile de...