Skip to content

Instantly share code, notes, and snippets.

@wdiasvargas
Created December 11, 2019 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wdiasvargas/64c509e524690ae2aee9dea03be9b794 to your computer and use it in GitHub Desktop.
Save wdiasvargas/64c509e524690ae2aee9dea03be9b794 to your computer and use it in GitHub Desktop.
const map = (fn, [x, ...xs]) => (
(x === undefined && xs.length ==0)? []
:[f(x),...map(f,xs)]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment