Call Stack Visualizer
Watch how functions are pushed and popped from the call stack. Understand execution context and function invocation.
- Stack frame visualization
- Execution context display
- Variable scope tracking
Event Loop Visualizer
Understand asynchronous JavaScript. See how callbacks, promises, and async/await work with the event loop.
- Macro/Micro task queues
- Promise resolution
- setTimeout/setInterval
Recursion Visualizer
See recursion unfold with tree visualization. Watch base cases hit and values bubble up the call tree.
- Recursive call tree
- Stack depth tracking
- Return value propagation