How to use math library In Javascript

In this approach, we are using division using the math library in javaScript. JavaScript makes it simple to divide two variables, and the result is in floating-point integers. However, the Math library, which offers a variety of functions, may be used to get the division’s quotient and remainder. For instance, the Math.floor() or Math.trunc() function, which transforms the floating-point value to an integer, may be used to get the quotient of a division, and the % character can be used to obtain the remainder. Find the remainder and quotient of 10 divided by 5, for instance. Check out the code below.

Example: This example shows the implemetation of the above-explained approach.

Javascript




let a = 10;
let b = 5;
let q = Math.floor(a / b);
let r = a % b;
console.log('Quotient = ', q, 'Remainder = ', r);


Output

Quotient =  2 Remainder =  0

Note: If the numbers are too big, the math library will fail. As an alternative to the Math.floor() method, you may alternatively use the Math.trunc() function, which can handle larger integers. Negative values will result in a failure of the Math.floor() function but not a failure of Math.trunc().

Division in JavaScript

In every programming language, the operation of division is used often. The division operator (/) is used in JavaScript to divide integers. You may use the division operator or a predefined JavaScript technique that treats every number as an integer to divide two values.

Use the techniques listed below to divide two numbers:

Table of Content

  • Division (/) Operator
  • JavaScript parseInt() Method
  • Using math library in JavaScript
  • Using Bitwise Operator

Similar Reads

Method 1: Division (/) Operator

Use the division operator, represented in JavaScript by the symbol (/), to divide two integers. Two operands may be divided; the divided operand is known as the “dividend,” while the dividing operand is referred to as the “divisor.” The “quotient” is the value that remains after division. Follow the given-provided syntax for division:...

Method 2: JavaScript parseInt() Method

...

Method 3: Using math library in JavaScript

...

Method 4: Using Bitwise Operator

A JavaScript predefined function called “parseInt()” accepts values in string format and converts them to integer formats. For instance, it will return “20” if you offer it the floating-point number “20.87” as a parameter. When using parseInt() to divide two integers, the method initially delivers the result in integer format before doing the division operation....

Method 4: Using Lodash _.divide() Method

...