Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active January 15, 2020 15:18
Show Gist options
  • Save indreklasn/b15899f2ba69c9d09c68a6225b72622f to your computer and use it in GitHub Desktop.
Save indreklasn/b15899f2ba69c9d09c68a6225b72622f to your computer and use it in GitHub Desktop.
const students = [
{
name: "Indrek",
score: 33.99
},
{
name: "John",
score: 50.35
},
{
name: "Alice",
score: 63.35
}
];
const calcAverageScore = students.reduce((accumulator, currentValue) => {
return Math.round(accumulator + currentValue.score)
}, 0)
console.log(calcAverageScore); // 147
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment