I got value - 20927, and its have to be in this format - 14d 12h 47m
I tried do math by myself but didn't found any solutions.
I got value - 20927, and its have to be in this format - 14d 12h 47m
I tried do math by myself but didn't found any solutions.
You could use moment.js
const duration = moment.duration(20927, 'minutes')
const durationString = duration.days() + 'd ' + duration.hours() + 'h ' + duration.minutes() + 'm'
console.log(durationString) //"14d 12h 47m"
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.21.0/moment.min.js"></script>