Skip to content

Instantly share code, notes, and snippets.

@matthew-gerstman
Created March 18, 2019 22:18
Show Gist options
  • Save matthew-gerstman/77c2e270789dbcff7f02ea123ffd3cb2 to your computer and use it in GitHub Desktop.
Save matthew-gerstman/77c2e270789dbcff7f02ea123ffd3cb2 to your computer and use it in GitHub Desktop.
function map(list, func) {
return list.reduce((acc, item) => {
acc.push(func(item));
return acc;
}, []);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment