Skip to content

Instantly share code, notes, and snippets.

@AndrewRayCode
Created January 23, 2021 21:44
Show Gist options
  • Save AndrewRayCode/a6e15250456201486b6870a7f6b55e17 to your computer and use it in GitHub Desktop.
Save AndrewRayCode/a6e15250456201486b6870a7f6b55e17 to your computer and use it in GitHub Desktop.
const foldr = (fn, initialValue, [element, ...rest]) => {
if (element === undefined) {
return initialValue;
}
return fn(element, foldr(fn, initialValue, rest));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment