“JS Format indischer Preis mit Kommas” 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)

JS Format indischer Preis mit Kommas

var x=12345678;
    x=x.toString();
    var lastThree = x.substring(x.length-3);
    var otherNumbers = x.substring(0,x.length-3);
    if(otherNumbers != '')
        lastThree = ',' + lastThree;
    var res = otherNumbers.replace(/\B(?=(\d{2})+(?!\d))/g, ",") + lastThree;
    alert(res);
MrMalfunction

Ähnliche Antworten wie “JS Format indischer Preis mit Kommas”

Fragen ähnlich wie “JS Format indischer Preis mit Kommas”

Weitere verwandte Antworten zu “JS Format indischer Preis mit Kommas” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen