function getTime(time) { //1:43 // console.log(Math.floor(time % 60)) return Math.floor(time / 60) + ':' + ('0' + Math.floor(time % 60)).slice(-2) }