DEV Community

Discussion on: Explain me execution context in JavaScript like I'm 6

Collapse
 
h0sny profile image
Hosnyy • Edited

It's like eating one cake at a time , but whenever you get another cake , you leave the first one and eat the new one till it's finished then go back again to the previous cake . Similarly execution context works in a way where it executes current function then if there is a function call inside it , it pauses this execution execution context and start the new one with the new function and so on

Collapse
 
rawas_aditya profile image
Aditya Rawas

Isn't that callstack ?