Skip to content

Instantly share code, notes, and snippets.

@therealklanni
Last active December 2, 2015 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save therealklanni/2eaffd4029bfaabf5559 to your computer and use it in GitHub Desktop.
Save therealklanni/2eaffd4029bfaabf5559 to your computer and use it in GitHub Desktop.
const Yfact = Y(inner => n => n <= 1 ? n : n * inner(n - 1))
console.log(Yfact)
// n => n <= 1 ? n : n * inner(n - 1)
@therealklanni
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment