Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created July 30, 2018 23:07
Show Gist options
  • Select an option

  • Save gladchinda/6b80caa255f268255f4a5b7b7a27ad71 to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/6b80caa255f268255f4a5b7b7a27ad71 to your computer and use it in GitHub Desktop.
const scores = [42, 68, 49, 83, 72, 65, 77, 74, 86, 51, 69, 47, 53, 58, 51];
const totalScore = sum.apply(null, scores);
const averageScore = totalScore / scores.length;
console.log(totalScore); // 945
console.log(averageScore); // 63
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment