1
2
3
4
//补零
function addZero(num,n){
return (Array(n).join(0)+num).slice(-n)
}