Skip to content

Instantly share code, notes, and snippets.

@dwouca
Created May 20, 2018 20:55
Show Gist options
  • Save dwouca/9f755f11e1e5660ea2667bdb22a7fc1b to your computer and use it in GitHub Desktop.
Save dwouca/9f755f11e1e5660ea2667bdb22a7fc1b to your computer and use it in GitHub Desktop.
Bookmarklet that calculates the average score for exams in cyber start essentials.
javascript:(function(){total=0;n=0;for(let i = 1; i<document.getElementsByClassName("progress").length-1;i++){try{x=(parseInt(document.getElementsByClassName("progress")[i].childNodes[1].childNodes[3].childNodes[1].textContent.replace("%", "")));total+=x;n+=1}catch{}};alert(total/n)})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment