取小数点,不用四舍五入,区别于tofixed()方法 math.js 使用

function floatNumber(value, float = 2) {
  return `${value}`.replace(/\.(\d+)/, function(e, $1) {
    return `.${$1.substr(0, float)}`
  })
}

//取小数点前的整数
Math.trunc()

math.js 使用

你可能感兴趣的:(js,javascript)