Reducing a list to a single value is easy when you have _.reduce. Let's say
we wanted to see if a group of people could afford a cab ride. We'd want to
look at all the money they have together as a group, which means we'd want to
reduce a list of objects to a single value, in this case the sum ...