For example. I want to print numbers from 1 to 20
but I want print 1 as 01 , 2 as 02 and so on ..
formatNumber = function( num )
{
if ( num < 10 )
{
return "0" + num;
}
else
{
return "" + num;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With