How to fix - createdAt.getMinutes - Missing Zero

155 Views Asked by At

I encountered an unexpected issue with "${calculate.createdAt.getMinutes()}" It does not show the 0... It should be "13:06" but it shows only 13:6 . How to fix the missing 0? Thanks for advice.

1

There are 1 best solutions below

3
On

You can apply padStart like this

let date = new Date(2021,6,10,10,3,20)
console.log(date);
let minuteString = `${date.getMinutes()}`.padStart(2, "0")
console.log(minuteString);