Skip to content

Instantly share code, notes, and snippets.

@haribote
Created April 28, 2015 02:40
Show Gist options
  • Save haribote/55f7258fa5d3a6e77270 to your computer and use it in GitHub Desktop.
Save haribote/55f7258fa5d3a6e77270 to your computer and use it in GitHub Desktop.
Translate a "hh:mm:ss" format text to seconds
"01:24:36".split(":").reverse().reduce(function(memo, value, index) {
memo += parseInt(value, 10) * Math.pow(60, index);
return memo;
}, 0);
// => 5076
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment