Number.prototype.zeroFix=function(l){ return '00000000'.concat(this).slice(-l||-2) }; alert((9).zeroFix())