Created
May 21, 2017 15:22
-
-
Save ncuillery/0040183fb832fc26ca699f7c711b1a70 to your computer and use it in GitHub Desktop.
ReactEurope2017_1
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
const filteredPersons = _.filter(persons, person => person.age < 30); | |
const sortedPersons = _.sortBy(filteredPersons, person => person.age); | |
const names = _.map(sortedPersons, person => person.name); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment