计算最接近一个数字的整数。
例如,round(133.8)
返回值为 134。
第二个参数 decimals
是可选的。它设置舍入时要使用的小数位数。例如,round(12.34, 1)
返回值为 12.3。默认情况下,decimals
为 0。
示例
语法
round(n, [decimals])
参数
n
数字:
把数字四舍五入。
decimals
数字:
要四舍五入的小数位数,默认为 0。
Returns
整数: 四舍五入后的数字。
Notice any errors or typos? Please let us know. Please feel free to edit src/math/calculation.js and open a pull request!