如何将数字保留两位小数并向下取整?

6 浏览
0 Comments

如何将数字保留两位小数并向下取整?

这个问题已经在这里有答案了

如何将数字四舍五入到最多2位小数

如何将以下输入转换为下面的输出

输入

1.0789
10.350
1.7777

输出

1.07
10.35
1.77

admin 更改状态以发布 2023年5月22日
0
0 Comments

您有多种方法来实现这一点

  1. 使用 Math.round(num * 100) / 100
  2. 使用 Math.ceil(num * 100)/100;
0
0 Comments

使用Math.floor将当前值下的小数位四舍五入。

参考文档

示例

Math.floor(1.0789 * 100) / 100

运行代码

console.log(Math.floor(1.0789 * 100) / 100);
console.log(Math.floor(10.350 * 100) / 100);
console.log(Math.floor(1.7777 * 100) / 100);
console.log(Math.floor(12.34 * 100) / 100);

0