所以我在
javascript中添加和减去浮点数,而且我需要知道如何总是把任何数字的上限设置为小于3位的数字.例如:
3.19 = 3.19
3.191 = 3.20
3.00000001 = 3.01
解决方法
num = Math.ceil(num * 100) / 100;
虽然,due to the way floats are represented,你可能不会得到一个干净的数字,这是两位小数.为了显示目的,请务必进行num.toFixed(2).
3.19 = 3.19
3.191 = 3.20
3.00000001 = 3.01
num = Math.ceil(num * 100) / 100;
虽然,due to the way floats are represented,你可能不会得到一个干净的数字,这是两位小数.为了显示目的,请务必进行num.toFixed(2).