Skip to content

Instantly share code, notes, and snippets.

@nicksheffield
Last active May 3, 2016 04:58
Show Gist options
  • Save nicksheffield/7daaf36287c42dfd135a4f20a19d3ede to your computer and use it in GitHub Desktop.
Save nicksheffield/7daaf36287c42dfd135a4f20a19d3ede to your computer and use it in GitHub Desktop.
Get average number using Array.prototype.reduce
function avg(a) {
return a.reduce((s, n) => n = s + n) / a.length
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment