Convert milliseconds to hours and minutes using Momentjs May 14, 2023 by Tarik I ended up doing this… var x = 433276000 var tempTime = moment.duration(x); var y = tempTime.hours() + tempTime.minutes();