Created
January 16, 2020 10:48
-
-
Save indreklasn/f0bc5d922be9a84114250ddc60c6bcab 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 addScores = (accumulator, currentValue) => Math.round(accumulator + currentValue.score) | |
const calcAverageScore = students.reduce(addScores, 0) | |
console.log(calcAverageScore); // 147 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment