例如: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(小數位數)