Skip to content

Instantly share code, notes, and snippets.

@noximus
Created March 25, 2019 17:16
Show Gist options
  • Save noximus/698d4ed45ce0ed508cc5b5a41ce172c0 to your computer and use it in GitHub Desktop.
Save noximus/698d4ed45ce0ed508cc5b5a41ce172c0 to your computer and use it in GitHub Desktop.
function getAverageTestScore(scores) {
var total = 0;
for (var i = 0; i < scores.length; i++) {
total += scores[i];
}
const avg = total / scores.length;
// const avg = scores.reduce((a, b) => a+b )/ scores.length;
return avg
}
let avg = getAverageTestScore([80, 100]);
console.log(avg, '<-- should be 90');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment