In JavaScript, what happens when the call stack is full, commonly known as 'Stack Overflow'?

  • The program crashes, and an error is thrown
  • The excess functions are moved to the heap
  • The browser prompts the user with an error message
  • The call stack automatically expands
When the call stack is full, a 'Stack Overflow' occurs, leading to a runtime error. This happens when the stack size exceeds its limit, usually due to excessive function calls, resulting in a crash.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *