Created
September 1, 2017 14:47
-
-
Save mb8z/f719573b3fb8cc1d4021eaa90a58569e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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