# floor
# Description
根据 precision(精度) 向下舍入 number。(注: precision(精度)可以理解为保留几位小数。)
# Params
(number, precision)
# Return
Number
# Depend
import createRound from './.internal/createRound.js'
# Code
const floor = createRound('floor')
# Analyze
调用 createRound
方法,创建了 Math.floor
的方法,只不过对于 精度进行了处理
# Remark
- Math.floor() MDN (opens new window) 返回小于或等于一个给定数字的最大整数。 也就是向下取整
# Example
floor(4.006)
// => 4
floor(0.046, 2)
// => 0.04
floor(4060, -2)
// => 4000