Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
4  
Not rounding, that's string formatting. – Lazarus Jun 8 '10 at 15:30
that is not rounding .. that is formatting.. – Gaby aka G. Petrioli Jun 8 '10 at 15:31
6  
I've found this wich I guess is far more simple: ("00" + h).slice (-3); – Paulo Bueno Jul 30 '12 at 20:26
@PauloBueno ("00" + 1234).slice (-3); gives 234 i.e. discards the most significant figure. – Daniel Earwicker Aug 14 '12 at 8:05
1  
@DanielEarwicker sure it does but you should adjust to the ammount of digits you are expecting. ("000" + 1234).slice(-4), ("0000" + 12345).slice(-5) and so on... – Paulo Bueno Aug 15 '12 at 19:25

marked as duplicate by Drew Noakes, Junuxx, rene, Rafael, SomeKittens Oct 14 '12 at 20:51

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.

6 Answers

up vote 48 down vote accepted

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...

function pad(num, size) {
    var s = num+"";
    while (s.length < size) s = "0" + s;
    return s;
}

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.

function pad(num, size) {
    var s = "000000000" + num;
    return s.substr(s.length-size);
}

If you care about negative numbers you'll have to strip the "-" and readd it.

share|improve this answer
Second function; shorter: function pad(num, size){ return ('000000000' + num).substr(-size); } – Blaise Feb 24 at 12:42
^ Negative values won't work in many versions of IE. – InfinitiesLoop Feb 24 at 16:45
Thanks! Didn't know that so now I have some code to check... :) – Blaise Feb 24 at 23:14
Ah, apparently slice() works with negative values in IE though :) stackoverflow.com/questions/2243824/… – InfinitiesLoop Feb 26 at 6:08

Another approach:

function zeroPad(num, places) {
  var zero = places - num.toString().length + 1;
  return Array(+(zero > 0 && zero)).join("0") + num;
}

zeroPad(5, 2); // "05"
zeroPad(5, 4); // "0005"
zeroPad(5, 6); // "000005"
zeroPad(1234, 2); // "1234" :)
share|improve this answer
+1 - I was going to suggest the array joining method until InfinitiesLoop posted his answer and I changed my mind :-) – Andy E Jun 8 '10 at 15:43
You're not taking into account negative array sizes ;) eg zeroPad(1234, 2) -> RangeError: Invalid array length – Crescent Fresh Jun 8 '10 at 15:59
@Crescent: Thanks, fixed... – CMS Jun 8 '10 at 16:07
According to this benchmark, this method is 5 times slower than the accepted solution: gist.github.com/4382935 – superjoe30 Dec 26 '12 at 20:36

From https://gist.github.com/1180489

function pad(a,b){return(1e15+a+"").slice(-b)}

With comments:

function pad(
  a, // the number to convert 
  b // number of resulting characters
){
  return (
    1e15 + a + // combine with large number
    "" // convert to string
  ).slice(-b) // cut leading "1"
}
share|improve this answer
1  
brilliant. added to my libs – Dan May 12 '12 at 17:28
9  
This is good but it has a fatal flaw. For example, pad (1234, 3) === "234"! Which is obviously, unacceptable. – Brock Adams Jun 7 '12 at 23:54
Elegant. Excellent. – Sixty4Bit Oct 30 '12 at 22:39

Expanding on this, you can neaten it up by extending the Number object:

Number.prototype.pad = function(size){
      if(typeof(size) !== "number"){size = 2;}
      var s = String(this);
      while (s.length < size) s = "0" + s;
      return s;
    }

9.pad();
//returns "09"
7.pad(3);
//returns ("007")
share|improve this answer

Just for fun (I had some time to kill), a more sophisticated implementation which caches the zero-string:

pad.zeros = new Array(5).join('0');
function pad(num, len) {
    var str = String(num),
        diff = len - str.length;
    if(diff <= 0) return str;
    if(diff > pad.zeros.length)
        pad.zeros = new Array(diff + 1).join('0');
    return pad.zeros.substr(0, diff) + str;
}

If the padding count is large and the function is called often enough, it actually outperforms the other methods...

share|improve this answer
function zfill(num, len) {return (Array(len).join("0") + num).slice(-len);}
share|improve this answer
When you post code select it and click on the {} button so it gets formatted as such. – Shef Sep 12 '11 at 12:05
zfill(1234, 3) === "234" – David Skyba Jun 25 '12 at 19:26

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