DigitUtil

/// js 数字前面自动补零
function PrefixInteger(num, n) {
    return (Array(n).join(0) + num).slice(-n);
}

你可能感兴趣的:(DigitUtil)