misbamishba.hashnode.dev·Oct 15, 2024Have you ever wondered how JavaScript executes code?javascript executes code by creating and managing Execution contexts There are two types of Execution Contexts Global Execution contexts Function Execution contexts Global Execution Contexts In JavaScript, a global execution context is created wh...ProgrammingJavaScript
Shailesh Parmarshaileshparmar.hashnode.dev·May 28, 2023Journey into JavaScript's Call Stack: Unraveling the Essence of Function ExecutionIntroduction The call stack is an essential concept in JavaScript that plays a fundamental role in managing function calls and maintaining the execution order of a program. In this blog post, we will delve into the details of the call stack, its purp...10 likes·60 readsJavaScript