Lodash

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

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

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

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

添加版本

3.10.0

参数

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

返回

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

例子

_.ceil(4.006);
// => 5
 
_.ceil(6.004, 2);
// => 6.01
 
_.ceil(6040, -2);
// => 6100

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods