“Zahlenformat in JavaScript” Code-Antworten

Formatmenge in JavaScript

const formatToCurrency = amount => {
  return "$" + amount.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, "$&,");
};
formatToCurrency(12.34546); //"$12.35"
formatToCurrency(42345255.356); //"$42,345,255.36
Delightful Dotterel

So formatieren Sie Geld als Währungszeichenfolge

(12345.67).toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');  // 12,345.67
Real Reindeer

JS -Format Urcurecy

// Create our number formatter.
var formatter = new Intl.NumberFormat('en-US', {
  style: 'currency',
  currency: 'USD',
});

formatter.format(2500); /* $2,500.00 */
Lonely Curly Boi

Zahlenformat in JavaScript

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
Wicked Walrus

JS -Zahlenformat

function numberWithSpaces(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " ");
}
Shadow

JavaScript -Nummer Format

var x = parseFloat('9.656');

x.toFixed(0);           // returns 10
x.toFixed(2);           // returns 9.66
x.toFixed(4);           // returns 9.6560
x.toFixed(6);  
Matteoweb

Ähnliche Antworten wie “Zahlenformat in JavaScript”

Fragen ähnlich wie “Zahlenformat in JavaScript”

Weitere verwandte Antworten zu “Zahlenformat in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen