Maximum call stack size exceeded
Occurs when a function calls itself too many times, causing a stack overflow.
Add a base case to stop recursion. Check for infinite loops or reduce recursion depth.