Here I a building the time from seconds (50400) and this works great, however where the time is, for example 14:00, it only displays 14:0. I am trying to add a trailing zero.
I have already tried value = parseFloat(buildEndTime).toFixed(2); which doesn't work in this instance.
buildEndTime = Math.floor(gig.end_time/(60 * 60)) + ':' + Math.floor(gig.end_time / 60) % 60;