Skip to content

Instantly share code, notes, and snippets.

@therealklanni
Last active December 2, 2015 21:22
Show Gist options
  • Save therealklanni/5761bfd155353cfe17fb to your computer and use it in GitHub Desktop.
Save therealklanni/5761bfd155353cfe17fb to your computer and use it in GitHub Desktop.
const fact = n => n <= 1 ? n : n * fact(n - 1)
// expanded as
const fact = n => {
return n <= 1 ? n : n * fact(n - 1)
}
@therealklanni
Copy link
Author

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