Factorial of Number Using Recursion
function fact(n) {
if (n < 0) throw new Error('Number must be positive');
if (n === 0) return 1;
return n * fact(n - 1);
}
console.log(fact(5));
Time Complexity O(n)/Space Complexity O(n)
function fact(n) {
if (n < 0) throw new Error('Number must be positive');
if (n === 0) return 1;
return n * fact(n - 1);
}
console.log(fact(5));
Time Complexity O(n)/Space Complexity O(n)