Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created April 20, 2018 07:55
Show Gist options
  • Save vldvel/63dc927dda7bec8246772211392c7e50 to your computer and use it in GitHub Desktop.
Save vldvel/63dc927dda7bec8246772211392c7e50 to your computer and use it in GitHub Desktop.
JavaScript composition
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