I have a number in Javascript, that I know is less than 10000. I want to display it as a four-digit number, with leading zeroes. Is there anything more elegant than the following?
if(num<10) num="000"+num;
else if(num<100) num="00"+num;
else if(num<1000) num="0"+num;
I want something that is built into Javascript, but I can't seem to find anything.