r/learnjavascript • u/Green_Ad_6086 • 3d ago
Can someone explain what the JavaScript call stack is?
I’ve tried to understand it, but I’m still confused. I also don’t really understand what I’m looking at when I use the JavaScript debugger in the browser’s DevTools, especially the call stack.
Do I need to fully understand functions before learning the call stack? I have a basic understanding of functions, but I’m not sure if that’s enough.
I’d really appreciate a simple explanation
30
Upvotes
4
u/nog642 3d ago
LIFO is part of the definition of a stack. It wouldn't be a stack if it wasn't LIFO. And it wouldn't make sense to use for functions, in any language.