Skip to content

Instantly share code, notes, and snippets.

@yschen25
Created April 6, 2022 23:24
function factorial(n) {
if (n === 0) return 1;
return n * factorial(n - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment