📜  将 int 解析为 2 位格式的 javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:22.230000             🧑  作者: Mango

代码示例1
function leftPad(number, targetLength) {
    var output = number + '';
    while (output.length < targetLength) {
        output = '0' + output;
    }
    return output;
}
// Output :- 
// leftPad(1, 2) // 01
// leftPad(10, 2) // 10
// leftPad(100, 2) // 100
// leftPad(1, 3) // 001
// leftPad(1, 8) // 00000001