_.chain(people) .sortBy(function(person) { return person.firstName.length + person.lastName.length; }) .last() .value()
_(people).max(function(person) { return person.firstName.length + person.lastName.length; });