Skip to content

Instantly share code, notes, and snippets.

@baranovxyz
Created May 9, 2020 20:55
Show Gist options
  • Save baranovxyz/268326b2d3b406d84467d8ea4c9e5ac5 to your computer and use it in GitHub Desktop.
Save baranovxyz/268326b2d3b406d84467d8ea4c9e5ac5 to your computer and use it in GitHub Desktop.
function factorial(n) {
if (n <= 1) return 1;
return n * factorial(n - 1);
}
console.log(factorial(5)); // 120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment