Hi, currently I see next example at https://lodash.com/docs/4.17.14#sortBy
_.sortBy(users, ['user', 'age']);
// => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]
The problem here - I don't understand users first sorted by age, then by name. Or visa versa ( first by name, then by age).
It will be awesome if you change default data to something like
var users = [
{ 'user': 'fred', 'age': 48 },
{ 'user': 'barney', 'age': 50 }, // CHANGES HERE, 36 -> 50
{ 'user': 'fred', 'age': 40 },
{ 'user': 'barney', 'age': 34 }
];