Skip to content

Instantly share code, notes, and snippets.

View mathenls's full-sized avatar

Matheus Lucas mathenls

  • 22:34 (UTC -03:00)
View GitHub Profile
const reverse = (array) =>
array.reduce((acc, elem) => [elem].concat(acc), []);
const map = (array, fun) =>
reverse(array.reduce((acc, elem) => [fun(elem)].concat(acc), []));
const filter = (array, pred) =>
reverse(array.reduce((acc, elem) => pred(elem) ? [elem].concat(acc) : acc, []));