PatoCh

SoccerProject players rating average

Feb 1st, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let ratings = Array.from(document.getElementsByTagName("tr")).filter(a => a.id.startsWith("id")).map(a => parseInt(a.children[8].children[0].children[0].alt));
  2. let avg_rating = Math.round((ratings.reduce((s, e) => s + e) / ratings.length + Number.EPSILON) * 100) / 100;
  3. console.log(avg_rating);
Add Comment
Please, Sign In to add comment