Skip to content

Instantly share code, notes, and snippets.

@itskhaledmohammad
Last active January 1, 2020 19:01
Show Gist options
  • Save itskhaledmohammad/8c696cd8712e9d03649cc0deb7c35199 to your computer and use it in GitHub Desktop.
Save itskhaledmohammad/8c696cd8712e9d03649cc0deb7c35199 to your computer and use it in GitHub Desktop.
Get Duration of a WesBos's Course.
var mins = 0;
var sec = 0;
durations = Array.from(document.querySelectorAll('.duration'))
durations.forEach(e => {
mins += parseInt(e.textContent.split(":")[0]);
sec += parseInt(e.textContent.split(":")[1]);
})
sec += (mins * 60)
new Date(sec * 1000).toISOString().substr(11, 8);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment