Skip to content

Instantly share code, notes, and snippets.

@manavm1990
Created December 17, 2022 20:50
Show Gist options
  • Save manavm1990/5525171a3889aa18c7f29d4a2f92c955 to your computer and use it in GitHub Desktop.
Save manavm1990/5525171a3889aa18c7f29d4a2f92c955 to your computer and use it in GitHub Desktop.
MM:SS
function formatMinutesSeconds(time) {
return `${Math.floor(time / 60)}:${(time % 60).toString().padStart(2, "0")}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment