Sorts an array in place according to the specified keys or sorting options.
The array to sort
Sorting criteria, applied in order of priority
The input array after sorting
const sorted = sortKey(users, 'lastName', 'firstName'); Copy
const sorted = sortKey(users, 'lastName', 'firstName');
Sorts an array in place according to the specified keys or sorting options.