Skip to content

Instantly share code, notes, and snippets.

@ncuillery
Created May 21, 2017 15:22
Show Gist options
  • Save ncuillery/0040183fb832fc26ca699f7c711b1a70 to your computer and use it in GitHub Desktop.
Save ncuillery/0040183fb832fc26ca699f7c711b1a70 to your computer and use it in GitHub Desktop.
ReactEurope2017_1
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