Zum Beispiel: 10 ist als 10.00 formatiert1.1 ist als 1.10 formatiert2.21 ist als 2.21 formatiert
Keine anderen Umstände
Es gibt BigDecimal in Java, das verwendet werden kann. Gibt es etwas Ähnliches in 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(小数位数)