Give the following array of objects, I need to sort them by the date field ascending.
var myArray = [ { name: \"Joe Blow\", date: \"Mon Oct 31 2016 00:
just write _.sortBy({yourCollection}, {the field name});
_.sortBy({yourCollection}, {the field name});
lodash will automatically figure that this is a date and it'll work like a magic!
Awesome!