Skip to content

Instantly share code, notes, and snippets.

@haskellcamargo
Last active September 15, 2017 20:17
Show Gist options
  • Select an option

  • Save haskellcamargo/33308c7adacce64fcca634814958fc4c to your computer and use it in GitHub Desktop.

Select an option

Save haskellcamargo/33308c7adacce64fcca634814958fc4c to your computer and use it in GitHub Desktop.
console.log(y(fact => n =>
n === 0 ? 1 : n * fact(n - 1)
)(5)); // 120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment