Skip to content

Instantly share code, notes, and snippets.

@waghcwb
Created April 20, 2019 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waghcwb/0a2b6f771d405f488c8deced48bfc7ee to your computer and use it in GitHub Desktop.
Save waghcwb/0a2b6f771d405f488c8deced48bfc7ee to your computer and use it in GitHub Desktop.
// timeFormat = 'mm:ss'
function convertToSeconds(time) {
const [ minutes, seconds ] = time.split(':')
const minutesToSeconds = (Number(minutes) * 60)
return minutesToSeconds + Number(seconds)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment