Answers for "js convert mins to seconds"

1

javascript seconds to min and seconds

function convert(value) {
    return Math.floor(value / 60) + ":" + (value % 60 ? value % 60 : '00')
}
Posted by: Guest on March-12-2021

Code answers related to "js convert mins to seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language