Skip to content

Instantly share code, notes, and snippets.

@granmoe
Last active April 16, 2018 02:03
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 granmoe/cb9750e4a8f580d468f4a2473f089051 to your computer and use it in GitHub Desktop.
Save granmoe/cb9750e4a8f580d468f4a2473f089051 to your computer and use it in GitHub Desktop.
const mapFunction = func => arr => arr.map(func)
const double = mapFunction(x => x * 2)
double([1, 2, 3])
// returns [2, 4, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment