function floatNumber(value, float = 2) {
return `${value}`.replace(/\.(\d+)/, function(e, $1) {
return `.${$1.substr(0, float)}`
})
}
//取小数点前的整数
Math.trunc()
取小数点,不用四舍五入,区别于tofixed()方法 math.js 使用
于 2022-05-07 16:44:45 首次发布