What is the base case in a recursive function?
- The initial condition
- The stopping condition
- The recursive condition
- The iterative condition
In a recursive function, the base case is the condition that prevents further recursion. It is crucial for stopping the recursion and ensuring that the function does not enter an infinite loop.
Loading...
Related Quiz
- How does tree shaking affect the handling of side effects in JavaScript modules?
- Is it possible to destructure properties from nested objects?
- Consider a scenario where you are managing a list of items in a shopping cart. Would you use let or const to declare the list, and why?
- In Promises, the _______ function is used to transition a promise into a resolved state, while _______ is used for rejection.
- In a recursive function, how can default parameters be used to track state across recursive calls?