Skip to content

Instantly share code, notes, and snippets.

@ShuvoHabib
Created January 2, 2021 19:39
Show Gist options
  • Save ShuvoHabib/c63f80337536a0d0b456444551246532 to your computer and use it in GitHub Desktop.
Save ShuvoHabib/c63f80337536a0d0b456444551246532 to your computer and use it in GitHub Desktop.
var total = 0;
document.querySelectorAll('tbody tr td a').forEach(function(el){
var a = el.innerHTML;
var b = a.split('$')[1];
var c = b.replace(/,/g, '');
total = (total + parseFloat(c));
})
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment