parse int в 2 цифр формат javaScript

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
The Ultimate Karam