Javascript – js-formatierte Daten
世界只因有你
世界只因有你 2017-05-18 10:56:09
0
3
956

Zum Beispiel:
10 ist als 10.00 formatiert
1.1 ist als 1.10 formatiert
2.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?

世界只因有你
世界只因有你

Antworte allen(3)
Ty80

.toFixed(2)

曾经蜡笔没有小新

printf模块

const printf = require('printf')
printf('%.2f', 10) //10.00

toFixed方法

(10).toFixed(2) //10.00
習慣沉默

用toFixed(小数位数)

var a=1;
a.toFixed(2) //"1.00"
typeof a // "number"
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage