pad2 javascript code example
Example: js pad 2
function pad2(n) {
return (n < 10 ? '0' : '') + n;
}
alert(pad2(3)); //03
alert(pad2(12)); //12
function pad2(n) {
return (n < 10 ? '0' : '') + n;
}
alert(pad2(3)); //03
alert(pad2(12)); //12