var objects = [ { 'a': { 'b': 2 } }, { 'a': { 'b': 1 } } ];
_.map(objects, _.property('a.b')); // => [2, 1]
_.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b'); // => [1, 2]