JS Pad 2

function pad2(n) {
  return (n < 10 ? '0' : '') + n; 
}
alert(pad2(3)); //03
alert(pad2(12)); //12
Friendly Hawk