vote up 5 vote down star

How to format numbers in JavaScript?


flag

45% accept rate

2 Answers

vote up 8 vote down check

The best you have with JavaScript is toFixed() and toPrecision() functions on your numbers.

var num = 10;
var result = num.toFixed(2); // result will equal 10.00

num = 930.9805;
result = num.toFixed(3); // result will equal 930.981

num = 500.2349;
result = num.toPrecision(4); // result will equal 500.2

num = 5000.2349;
result = num.toPrecision(4); // result will equal 5000

num = 555.55;
result = num.toPrecision(2); // result will equal 5.6e+2

Currency, commas, and other formats will have to be either done by you or a third party library.

link|flag
vote up 0 vote down

If you google for javascript printf, you'll find lots of implementations.

link|flag
all of which have their own flaws. – holli Oct 21 '08 at 14:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.