Skip to content

Instantly share code, notes, and snippets.

@mozkoq
Last active March 20, 2017 10:40
Show Gist options
  • Save mozkoq/c063e57afa6b74d12f3015f4f70acda1 to your computer and use it in GitHub Desktop.
Save mozkoq/c063e57afa6b74d12f3015f4f70acda1 to your computer and use it in GitHub Desktop.
javascript map
const map = (fn, arr) => {
const DEFAULTSTATE = []
return arr.reduce(
(result, current, i, reducingArray) =>
[...result, fn(current, i, reducingArray)],
DEFAULTSTATE
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment