JavaScript Execution Context, Call Stack, Web API’s and Event Loop
JavaScript Execution Context Execution Context in JavaScript is a whole lot of things. I’ll describe it as my understanding and show you how this works in running script behind the scenes. There are two phases of Execution Context. Creation phase and execution phase. If you declare a variable in your code var myName = “codespoetry.com”,…