“Die Zahl in Millionen JavaScript umwandeln” Code-Antworten

JavaScript konvertieren die Zahl von Tausenden auf K und Millionen bis m

// converts number to string representation with K and M.
// toFixed(d) returns a string that has exactly 'd' digits
// after the decimal place, rounding if necessary.
function numFormatter(num) {
    if(num > 999 && num < 1000000){
        return (num/1000).toFixed(1) + 'K'; // convert to K for number from > 1000 < 1 million 
    }else if(num > 1000000){
        return (num/1000000).toFixed(1) + 'M'; // convert to M for number from > 1 million 
    }else if(num < 900){
        return num; // if value < 1000, nothing to do
    }
}
Coder Cuttlefish

Die Zahl in Millionen JavaScript umwandeln

dtxhrddddddddddddddddddddddddddddddddddddddd
JUSTIN BREITNAUER

Ähnliche Antworten wie “Die Zahl in Millionen JavaScript umwandeln”

Fragen ähnlich wie “Die Zahl in Millionen JavaScript umwandeln”

Weitere verwandte Antworten zu “Die Zahl in Millionen JavaScript umwandeln” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen