Category: Debugging
-
The Call Stack
JavaScript uses a data structure, which we call the call stack to keep track of every function call that’s made. Every function gets added to the call stack and it’s addressed in the order of last in first out, or LIFO. The last function to be executed gets priority to finish execution before falling back…