Created
August 24, 2020 02:08
-
-
Save moomdate/63243a89f4a5f5e49f516ad7a40b338d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let sum = 0; | |
$("html body app-root app-layouts div app-history div div table tbody tr").each((d,i)=>{ | |
sum += +i.lastElementChild.textContent | |
}) | |
console.log(sum) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment