Created
May 21, 2017 15:29
-
-
Save ncuillery/2b0383bd98c023f48f63c542b74ee570 to your computer and use it in GitHub Desktop.
ReactEurope2017_2
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 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