Skip to content

Instantly share code, notes, and snippets.

@guifromrio
Last active May 25, 2016 08:19
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 guifromrio/2f10e97bc2ed90bb3fc92a964bbe83f4 to your computer and use it in GitHub Desktop.
Save guifromrio/2f10e97bc2ed90bb3fc92a964bbe83f4 to your computer and use it in GitHub Desktop.
var studentGrades = _.pluck(studentsByClass["A"], 'grades')
// [[7.0, 6.9, 8.0], [5.0, 8.7, 3.7]] - not very useful
var grades = _.flatten(studentGrades)
// [7.0, 6.9, 8.0, 5.0, 8.7, 3.7]
average(grades)
// 6.55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment