Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fourdollars
Created December 19, 2015 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fourdollars/39c50a35beaa8bbdd237 to your computer and use it in GitHub Desktop.
Save fourdollars/39c50a35beaa8bbdd237 to your computer and use it in GitHub Desktop.
var scores = [98, 74, 85, 77, 93, 100, 89];
var total = 0;
for (var score in scores) {
total += score;
}
var mean = total / scores.length;
console.log(mean);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment