Created
April 20, 2018 07:55
-
-
Save vldvel/63dc927dda7bec8246772211392c7e50 to your computer and use it in GitHub Desktop.
JavaScript composition
This file contains 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
users | |
.filter(({ active }) => active) | |
.map(({ age }) => (age + 100) % 27) | |
.reduce((p, c) => c > 20 ? p.concat(c) : p, []); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment