我有一堆数字,例如797.3333333333334
,852.22222111
,933.111023
,我总是希望将它们四舍五入到最接近的一分钱,这样我已经提到的数字将是797.34
,852.23
, 933.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/