Last active
January 15, 2020 15:18
-
-
Save indreklasn/b15899f2ba69c9d09c68a6225b72622f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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