Skip to content

Instantly share code, notes, and snippets.

@4skinSkywalker
Created April 18, 2019 08:38
Show Gist options
  • Select an option

  • Save 4skinSkywalker/e0fc84c30236d609efd35d86b5648098 to your computer and use it in GitHub Desktop.

Select an option

Save 4skinSkywalker/e0fc84c30236d609efd35d86b5648098 to your computer and use it in GitHub Desktop.
function fact(n) {
if (n === 1)
return 1
return n * fact(n - 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment