Will a recursive ‘setTimeout’ function call eventually kill the JS Engine?

There’s no actual recursion because the call to GetData is delayed and the JavaScript context is destroyed in the meantime. So it won’t crash the JS engine.

For your code sample, this is basically what will happen at the JS engine level:

  1. Initialize JS engine
  2. Create GetData function context
  3. Execute GetData statements including “setTimeOut”
  4. “setTimeOut” instruct the JS engine to call a function in 10 seconds
  5. Destroy GetData function context
  6. At this point, in terms of memory use, we are back to step 1. The only difference is that the JS engine stored a reference to a function and when to call it (lets call this data “futureCall”).
  7. After 10 seconds, repeat from step 2. “futureCall” is destroyed.

Leave a Comment