Parse Int en 2 chiffres format 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