Skip to content

Instantly share code, notes, and snippets.

@simonewebdesign
Created January 26, 2017 10:01
Show Gist options
  • Save simonewebdesign/6578261e471a1bdf75483b8c68913581 to your computer and use it in GitHub Desktop.
Save simonewebdesign/6578261e471a1bdf75483b8c68913581 to your computer and use it in GitHub Desktop.
JavaScript implementation of Array#map with Array#reduce
function arrayMap(arr, fn) {
return arr.reduce(function (prev, current) {
return prev.concat(fn(current));
}, []);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment