Skip to content

Instantly share code, notes, and snippets.

@spcbfr
Created July 13, 2021 16:18
Show Gist options
  • Save spcbfr/64fcf1f91b5306436c25cf39ff91b806 to your computer and use it in GitHub Desktop.
Save spcbfr/64fcf1f91b5306436c25cf39ff91b806 to your computer and use it in GitHub Desktop.
let fact = (num) => (num <= 0 ? 1 : num * fact(num - 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment