Guest User

Untitled

a guest
Jun 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $('td:contains("2.0")').parent().remove(); // usunięcie wpisów z oceną 2
  2. $('td:contains("---")').parent().remove(); // usunięcie niewystawionych ocen
  3. var sum=0; //suma ECTS
  4. var mulSum=0; // suma ECTS * ocena
  5. $('td[title="ocena"]').each(function(){
  6. mulSum += parseFloat($(this).text()) * parseFloat($(this).next().next().text());
  7. sum += parseFloat($(this).next().next().text());
  8. console.log(parseFloat($(this).text()), parseFloat($(this).next().next().text()));
  9.  
  10. });
  11. console.log(mulSum, sum, mulSum/sum);
Add Comment
Please, Sign In to add comment