What method would you use to add zeros to the beginning of a string until it has a length of 5?
const str = "42";
str.padStart(5, '0')
str.prepend(5, '0')
str.padEnd(5, '0')
str.append(5, '0')