PatoCh

SoccerProject players age average

Jan 11th, 2021 (edited)
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let ages = Array.from(document.getElementsByTagName("tr")).filter(a => a.id.startsWith("id")).map(a => parseInt(a.childNodes[4].innerHTML));
  2. let avg_age = Math.round((ages.reduce((s, e) => s + e) / ages.length + Number.EPSILON) * 100) / 100;
  3. console.log(avg_age);
Add Comment
Please, Sign In to add comment