四舍五入可以使用 toFixed() 方法,toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。

代码如下:

toFixed() 方法

var num =2.446242342;
num = num.toFixed(2);  // 输出结果为 2.45

另外像 round()floor()ceil() 等都不能真正的四舍五入,有精度问题。

round() 可以通过以下方式来确保精度是正确的:

round() 方法

var num =2.446242342;
num = Math.round((num + Number.EPSILON) * 100) / 100;  // 输出结果为 2.45

 

相关文章:

  • 2022-12-23
  • 2021-08-14
  • 2021-06-05
  • 2021-06-02
  • 2022-01-05
猜你喜欢
  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案