Sorts an array of objects in place by a series of keys.
The array to sort
The keys or sorting options to apply
The sorted array
const sorted = sortKey(users, 'lastName', 'firstName'); Copy
const sorted = sortKey(users, 'lastName', 'firstName');
Sorts an array of objects in place by a series of keys.