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
Ayush Paruiayushparui.hashnode.dev·Aug 11, 2023Unraveling the Mysteries of JavaScript Global Execution: A Whirlwind Adventure!Get ready for an exhilarating journey into the heart of JavaScript's realm, where code comes to life and global execution takes center stage! In this immersive article, we're embarking on an epic quest to demystify the enigmatic concept of the global...1 likeJavaScript
Dipta Sahadipta.hashnode.dev·Jul 9, 2023JavaScript Code কিভাবে Execute হয়?নিচের কোডটির মাধ্যমে চলুন দেখা যাক Browser এর মধ্যে Javascript কোড কিভাবে কাজ করে। যখন JS code run করা শুরু হয়, তখন Global Execution Context তৈরি হয়। এই Global Execution Context JavaScript এর Global Scope কে Represent করে। Global Execution Context স...7 likes·662 readsJavaScript
Ankur Tripathiankurtripathi.hashnode.dev·Apr 30, 2023Execution Context in JavaScriptHow JavaScript code is executed?? Have you ever wondered how JavaScript works behind the scene? Let’s understand how JavaScript execution works What is Execution Context? When we run any JavaScript, a special environment is created to handle the tran...57 readshosting
Akash Rajakashshares.hashnode.dev·Apr 20, 2023What is an Execution Context in JavaScriptYou might have heard about hoisting, scope, scope chain, and lexical scope. These are often confusing for beginners or even for some experience developers and these are very important as they create a base for your JavaScript journey. If you don't wa...10 likes·52 readsJavaScript
Bishal Paudelbishal2023.hashnode.dev·Feb 15, 2023All about Execution Context in JavaScriptEverything in JavaScript happens inside Execution Context. Simply, the Execution context is the container and it consists of different phases. They are the memory creation and code execution phases. Memory creation is handled by the memory component,...31 readsJavaScript
Neetesh Kumar Sharmaneetesh.hashnode.dev·Feb 15, 2023Execution Context And Call StackHello 👋🏻 lovely people, You would have thought, How javascript works under the hood.In this article, we're going to dive into it and you might wonder because it's pretty fascinating 😯. In javascript, whenever the script executes, some Execution Co...2 likesJavaScript
Pujari Basvarajcodecric.hashnode.dev·Feb 14, 2023Execution Context In JavaScriptHow JavaScript Code Gets Executed For those who don't know, the browser doesn't natively understand the high-level JavaScript code that we write in our applications. It needs to be converted into a format that the browser and our computers can under...73 readsJavaScript
David Olaleyedevdave.hashnode.dev·Sep 8, 2022How Javascript Works Behind The Scenes Part 2👋 Hello guys! What if I told you console.log() is not a part of javascript? 😲 or that setTimeout() or alert() aren't part of javascript as well? 🤯 I can see the gape in your mouth and the askance in your countenance at the moment which is understa...86 readsEvent Loop
Mangesh Thakremangeshthakre.hashnode.dev·Sep 7, 2022Javascript Execution Context | Call StackLet's take a look at how Javascript programs run step by step, Everything in javascript happens inside the Execution context Execution context Imagine your code is placed inside a box whenever you write JS code. That box is the Execution context, a c...2 likes·119 readsJavaScript