Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save anirudh-eka/42db1f9c5f87e2e0a52ef87e04f18fb4 to your computer and use it in GitHub Desktop.
Save anirudh-eka/42db1f9c5f87e2e0a52ef87e04f18fb4 to your computer and use it in GitHub Desktop.
const filterGreaterThan2AndMapAdd1Reducer = (a, x) => {
if(x > 2) {
return mapAdd1Reducer(a, x)
} else {
return a;
}
}
[1, 2, 3].reduce(filterGreaterThan2AndMapAdd1Reducer, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment