Pad a string with zeros

const startString = '42'
const newString = startString.padStart(4, '0')
~ fin ~