To prevent infinite recursion, it is important to define a __________ that stops the recursion.
- Base case
- Recursive case
- Break statement
- Counter variable
In recursive functions, a base case is crucial to terminate the recursion. It is the condition that, when met, stops the function from calling itself endlessly.
Loading...
Related Quiz
- What is a key difference between a Map and a WeakMap in JavaScript?
- Consider a function that fetches user data from an API. How can this function be refactored to adhere to the principles of pure functions?
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.
- What is the main difference between default exports and named exports in ES6 modules?
- The spread operator can be effectively used to concatenate arrays without the use of traditional methods like '__________'.