Answers for "js add 0 before string"

2

Javascript adding zeros to the beginning of a string

const number = 5;

number.toString().padStart(2, '0');
Posted by: Guest on February-13-2021
0

add zero in front of numbers lower than 10 python

print(f"{x:02}") # where x is the integer
Posted by: Guest on June-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language