Skip to content

Instantly share code, notes, and snippets.

@Aldaviva
Created August 5, 2017 11:40
Show Gist options
  • Save Aldaviva/319ca62d1013eab5f4a4f0fb84b3b98a to your computer and use it in GitHub Desktop.
Save Aldaviva/319ca62d1013eab5f4a4f0fb84b3b98a to your computer and use it in GitHub Desktop.
YouTube playlist length calculator
Array.prototype.map.call(document.querySelectorAll(".timestamp span"), function(span){ var minSecStrings = span.firstChild.nodeValue.split(":"); return parseInt(minSecStrings[0], 10)*60+parseInt(minSecStrings[1], 10); }).reduce(function(prev, curr){ return prev + curr; }, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment