Skip to content

Instantly share code, notes, and snippets.

@mb8z
Created September 1, 2017 14:47
Show Gist options
  • Save mb8z/f719573b3fb8cc1d4021eaa90a58569e to your computer and use it in GitHub Desktop.
Save mb8z/f719573b3fb8cc1d4021eaa90a58569e to your computer and use it in GitHub Desktop.
import _ from 'lodash';
const ourArray = [
{first_name: 'Marcin', last_name: 'Brukiewicz', age: 24},
{first_name: 'Marta', last_name: 'Brukiewicz', age: 24},
{first_name: 'Test', last_name: 'xyz', age: 56}
];
_.sortBy(ourArray, ['last_name', 'first_name']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment