Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“Math” Methods(“数学” 方法)

_.floor(number, [precision=0])

根据 precision(精度) 向下舍入 number。(注: precision(精度)可以理解为保留几位小数。)

添加版本

3.10.0

参数

  1. number (number): 要向下舍入的值。
  2. [precision=0] (number): 向下舍入的精度。

返回

(number): 返回向下舍入的值。

例子

_.floor(4.006);
// => 4
 
_.floor(0.046, 2);
// => 0.04
 
_.floor(4060, -2);
// => 4000

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods