Skip to content

Instantly share code, notes, and snippets.

@floscr
Last active May 30, 2016 21:53
Show Gist options
  • Save floscr/f5df5dcc7f3431c660055bbd1018a827 to your computer and use it in GitHub Desktop.
Save floscr/f5df5dcc7f3431c660055bbd1018a827 to your computer and use it in GitHub Desktop.
Calculate the total amount on highscore.money
[].slice.call(document.querySelectorAll('table tr td:nth-child(2)')).reduce((total, num) => {
let numValue = parseInt(num.innerHTML.replace('$', ''));
return total + numValue;
}, 0) + '$';
@floscr
Copy link
Author

floscr commented May 30, 2016

Copy this into your console, only tested on chrome 😉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment