Possible Duplicate:
How can I create a Zerofilled value using JavaScript?
I can round to x amount of decimal places with math.round but is there a way to round left of the decimal? for example 5 becomes 05 if I specify 2 places
I can round to x amount of decimal places with math.round but is there a way to round left of the decimal? for example 5 becomes 05 if I specify 2 places |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You're asking for zero padding? Not really rounding. You'll have to convert it to a string since numbers don't make sense with leading zeros. Something like this...
Or if you know you'd never be using more than X number of zeros this might be better. This assumes you'd never want more than 10 digits.
If you care about negative numbers you'll have to strip the "-" and readd it. |
|||||||||
|
|
Another approach:
|
|||||||||
|
|
From https://gist.github.com/1180489
With comments:
|
|||||||||||
|
|
Expanding on this, you can neaten it up by extending the
|
|||
|
|
|
Just for fun (I had some time to kill), a more sophisticated implementation which caches the zero-string:
If the padding count is large and the function is called often enough, it actually outperforms the other methods... |
|||
|
|
|
|||||
|
("00" + h).slice (-3);– Paulo Bueno Jul 30 '12 at 20:26("00" + 1234).slice (-3);gives234i.e. discards the most significant figure. – Daniel Earwicker Aug 14 '12 at 8:05("000" + 1234).slice(-4),("0000" + 12345).slice(-5)and so on... – Paulo Bueno Aug 15 '12 at 19:25