Inside JavaScript Right Now
Call Stack (what is running)
Global()
Memory (saved values)
empty
Queues (waiting work)
Microtask Queue
empty
Callback Queue
empty
A simple lab to understand JavaScript runtime.
JavaScript
SupportStep 1 / 19
Run shortcut: Ctrl/Cmd + Enter
Real-time syntax and output verification run in the background.
Global()
empty
Microtask Queue
empty
Callback Queue
empty
> No output yet.
Running Step 1 of 19
Running Line 1
function add(a, b) {
Explanation: Global execution context created and pushed to call stack.