Skip to content

Instantly share code, notes, and snippets.

@Expl4Life
Created December 16, 2017 15:03
Show Gist options
  • Save Expl4Life/4869716e324482d4d548a7725b2db4d9 to your computer and use it in GitHub Desktop.
Save Expl4Life/4869716e324482d4d548a7725b2db4d9 to your computer and use it in GitHub Desktop.
const apply = (times, fn, value) => {
const iter = (counter, acc) => {
if (counter === 0) {
return acc;
}
return iter(counter - 1, fn(acc));
};
return iter(times, value);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment