我有需要返回String +数字的函数。 该数字可以从0到1000。但我一直希望数字格式为0000,0001,0002、0116等。 我该怎么做 ? 谢谢
答案 0 :(得分:1)
您可以使用padStart
方法进行操作。希望这会有所帮助。
const padWithZeros = (number) => number.toString().padStart(4, 0)
console.log( padWithZeros(1) )
console.log( padWithZeros(10) )
console.log( padWithZeros(121) )