const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`)
round(1.345, 2) // 1.35
round(1.345, 1) // 1.3
相关文章
- 11-11PHP数学函数实践四:将浮点数从零舍入到指定的小数位数
- 11-11js之精确到指定位数的小数
2021-11-11 19:44:59
const round = (n, decimals = 0) => Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`)
round(1.345, 2) // 1.35
round(1.345, 1) // 1.3