Skip to content

Instantly share code, notes, and snippets.

@marikaross
Created February 13, 2019 20:57
Show Gist options
  • Save marikaross/b32da4b47e68946e45350aed5d7116c5 to your computer and use it in GitHub Desktop.
Save marikaross/b32da4b47e68946e45350aed5d7116c5 to your computer and use it in GitHub Desktop.

const movieTown = _.reduce(beyonce.movies, (movieTown, movie) => {
  let average = _.meanBy(beyonce.movies, movie => movie.rating)
  movieTown[movie.title] = {rating: movie.rating, averageRating: average}
  return movieTown
}, {})

console.log(movieTown)```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment