Is it possible to format seconds in a countdown style? For example, if I have var seconds = 3662
, how can I show: 1 hour 1 minute 2 seconds
.
I tried using formatDistanceStrict(3662)
but this is only printing the hour: 1 hour
.
Is there a built-in method to show the minutes and seconds too? I don't want to write 100 lines of code to get this working (like other examples from internet)