用 JavaScript 除以浮点数,将其四舍五入到小数点后 2 位,并计算余数

javascriptweb developmentfront end technologyobject oriented programming

假设,我们有一个浮点数 −

2.74

如果我们将此数字除以 4,结果为 0.685。

我们想将此数字除以 4,但结果应四舍五入到小数点后 2 位。

因此,结果应为 −

3 乘以 0.69,余数为 0.67

示例

其代码为 −

const num = 2.74;
const parts = 4;
const divideWithPrecision = (num, parts, precision = 2) => {
   const quo = +(num / parts).toFixed(precision);
   const remainder = +(num - quo * (parts - 1)).toFixed(precision);
   if(quo === remainder){
      return {
         parts,
         value: quo
      };
   }else{
      return {
         parts: parts - 1,
         value: quo,
         remainder
      };
   };
};
console.log(divideWithPrecision(num, parts));

输出

控制台中的输出将是 −

{ parts: 3, value: 0.69, remainder: 0.67 }

相关文章