“Formatgeld JavaScript Commas formatieren” Code-Antworten

Formatgeld JavaScript Commas formatieren

function formatMoney(n) {
    return "$ " + (Math.round(n * 100) / 100).toLocaleString();
}

n = 2123000;
// =>2,123,000
Zidane (Vi Ly - VietNam)

Fügen Sie das Komma für JavaScript hinzu

var n = 34523453.345
n.toLocaleString()
"34,523,453.345"
Janmejay

JavaScript -freundliches Zahlenformat mit Kommas

//ES6 Way
const numberWithCommas = (x) => {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
Modern Marten

Formatnummer mit Kommas JS

foramtNumber = (num,div=",")=>{
  return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, div);

}
midoelhawy

So formatieren Sie eine Ganzzahl mit einem Komma in JavaScript

x.toString().toLocaleString(); // x must be a number
Victorious Vulture

Ähnliche Antworten wie “Formatgeld JavaScript Commas formatieren”

Fragen ähnlich wie “Formatgeld JavaScript Commas formatieren”

Weitere verwandte Antworten zu “Formatgeld JavaScript Commas formatieren” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen