Skip to content

Instantly share code, notes, and snippets.

@crwang
Forked from JamieMason/average.js
Created June 21, 2014 12:21
Show Gist options
  • Save crwang/77c25be5106230a8c866 to your computer and use it in GitHub Desktop.
Save crwang/77c25be5106230a8c866 to your computer and use it in GitHub Desktop.
function average (arr)
{
return _.reduce(arr, function(memo, num)
{
return memo + num;
}, 0) / arr.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment