Prepend zeroes

addZero = function(num) {
    return ('0' + num).slice(-2);
}

 


Revision #1
Created 2023-05-23 13:09:02 UTC by Jelle
Updated 2023-05-23 13:10:06 UTC by Jelle