“Numer formatu JavaScript” Kod odpowiedzi

Numer formatu JavaScript

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

JS Format Urcurency

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

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

Format liczb w JavaScript

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

Format liczb JS

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

Format numeru JavaScript

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

Odpowiedzi podobne do “Numer formatu JavaScript”

Pytania podobne do “Numer formatu JavaScript”

Więcej pokrewnych odpowiedzi na “Numer formatu JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu