Javascriptでゼロパディング。

メモ。

var int = 5;
var res = ('0' + int).slice(-2);
↓
05

左側にゼロを必要個数分くっつけて必要桁数分までで切り落とすだけ。シンプルだね!