The factorial of any number can be solved with a recursive function
The Base Case is the one that presents recursion
What is a recursive case?
A case where there's a recursive call
A base case
A case where there isn't a recursive call
A base case isn't required to make a recursive function