Lodash _.floor
2021-09-22 14:12 更新
_.floor(number, [precision=0])
根据 precision(精度) 向下舍入 number。(注: precision(精度)可以理解为保留几位小数。)
添加版本
3.10.0
参数
- number (number): 要向下舍入的值。
- [precision=0] (number): 向下舍入的精度。
返回
(number): 返回向下舍入的值。
例子
_.floor(4.006);
// => 4
_.floor(0.046, 2);
// => 0.04
_.floor(4060, -2);
// => 4000
以上内容是否对您有帮助:
更多建议: