标签:ken pre comment 乘法 加法 new -name div ons
1、js有精度问题, 对于一些金额的计算就总是与偶莫名其妙的问题
2、decimal.js是使用的二进制来计算的, 所以能解决js的精度问题
const a = 9.99;
const b = 8.03;
// 加法
let c = new Decimal(a).add(new Decimal(b))
// 减法
let d = new Decimal(a).sub(new Decimal(b))
// 乘法
let e = new Decimal(a).mul(new Decimal(b))
// 除法
let f = new Decimal(a).div(new Decimal(b))
标签:ken pre comment 乘法 加法 new -name div ons
原文地址:https://www.cnblogs.com/zerodang/p/12922603.html