我有一堆数字,例如797.3333333333334852.22222111933.111023,我总是希望将它们四舍五入到最接近的一分钱,这样我已经提到的数字将是797.34852.23933.12分别。

我说了最接近的一分钱,但您也可以称它为最接近的十分之一。

有一个上限函数,但是只能舍入到最接近的整数,Math.round()也是如此

最佳答案

The Math.ceil(x) function returns the smallest integer greater than or equal to a number "x".

var rounded = Math.ceil(yourNumber * 100)/100;

关于javascript - 如何始终将数字向上舍入为Javascript中最接近的一分钱,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27083235/

10-10 08:59