suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Javascript – js-formatierte Daten

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?

世界只因有你世界只因有你2748 Tage vor887

Antworte allen(3)Ich werde antworten

  • PHP中文网

    PHP中文网2017-05-18 10:58:09

    .toFixed(2)

    Antwort
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-18 10:58:09

    printf模块

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

    toFixed方法

    (10).toFixed(2) //10.00

    Antwort
    0
  • 習慣沉默

    習慣沉默2017-05-18 10:58:09

    用toFixed(小数位数)

    var a=1;
    a.toFixed(2) //"1.00"
    typeof a // "number"

    Antwort
    0
  • StornierenAntwort