比如:10 格式化为 10.001.1 格式化为 1.102.21 格式化为2.21
没有其他情况
java中有BigDecimal可以做,js中有没有类似的东西啊?
.toFixed(2)
const printf = require('printf') printf('%.2f', 10) //10.00
(10).toFixed(2) //10.00
用toFixed(小数位数)
var a=1; a.toFixed(2) //"1.00" typeof a // "number"
.toFixed(2)
printf模块
toFixed方法
用toFixed(小数位数)