Skip to content

Instantly share code, notes, and snippets.

@haskellcamargo
Last active September 15, 2017 20:13
Show Gist options
  • Save haskellcamargo/89a76d1621665f2acf3cf7614bd6296c to your computer and use it in GitHub Desktop.
Save haskellcamargo/89a76d1621665f2acf3cf7614bd6296c to your computer and use it in GitHub Desktop.
function fact(n) {
if (n === 0) {
return 1;
}
return n * fact(n - 1);
}
console.log(fact(5)); // 120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment