10. Call Stack , Lexical scoping, Closures in javascript
Call Stack
The call stack is a data structure that keeps track of function calls in LIFO (Last In, First Out) order.
How It Works?
When a function is called, it's pushed onto the stack.
When the function finishes execution, it's popped off the sta...
rajputayush.hashnode.dev3 min read