Skip to content

Instantly share code, notes, and snippets.

@ncuillery
Created May 21, 2017 15:29
Show Gist options
  • Save ncuillery/2b0383bd98c023f48f63c542b74ee570 to your computer and use it in GitHub Desktop.
Save ncuillery/2b0383bd98c023f48f63c542b74ee570 to your computer and use it in GitHub Desktop.
ReactEurope2017_2
const names = _.chain(persons)
.filter(person => person.age < 30)
.sortBy(person => person.age)
.map(person => person.name)
.value();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment