Format a Number, Exactly Two in Length?

前端 未结 10 664
既然无缘
既然无缘 2021-02-03 21:49

I have an integer that is less then 100 and is printed to an HTML page with JavaScript. How do I format the integer so that it is exactly two digits long? For example:

10条回答
  •  情话喂你
    2021-02-03 22:27

    I use regex to format my time such as

    const str = '12:5'

    const final = str.replace(/\d+/g, (match, offset, string) => match < 10 ? '0' + match : match)

    output: 12:05

提交回复
热议问题