Skip to content

Instantly share code, notes, and snippets.

@francorisso
Created March 18, 2016 16:58
Show Gist options
  • Save francorisso/04851d87d539dee97b78 to your computer and use it in GitHub Desktop.
Save francorisso/04851d87d539dee97b78 to your computer and use it in GitHub Desktop.
Average height
var alturas = [181, 121, 132, 177, 122, 150, 188, 190, 184, 176];
var avg = 0;
for (var i=0; i<alturas.length; i++) {
avg += (alturas[i]/alturas.length);
}
console.log(avg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment