Nimatullah Razmjorazmjo.hashnode.dev·Jan 8, 2025Exploring Node.js: How the Event Loop Determines Execution OrderIntroduction As a Node.js developer, understanding the event loop and execution order is crucial for writing efficient and bug-free applications. The event loop is the core mechanism that allows Node.js to perform non-blocking I/O operations despite ...Node.js
Utkarshblogs.utkarshrajput.com·Nov 11, 2024Part 1: Execution Context - The core of JavascriptIntroduction JavaScript’s Execution Context is foundational yet complex concept for understanding how JavaScript runs your code. If you aim to write performant, error-free code and debug complex applications, mastering Execution Context is crucial. I...11 likes·31 readsJavaScript
shivam kumar1thenameisshivam.hashnode.dev·Sep 7, 2024JavaScript: Execution ContextJavaScript is a single threaded synchronous language And every things happen inside the Execution context. single threaded means JavaScript can only run a piece of code at a time, it can't execute multiple programs parallely. Synchronous means it exe...11 likesJavaScript
Siddhanth Guptasiddhanthgupta.hashnode.dev·Aug 14, 2024How JavaScript Execution Context Works: A Simple GuideIntroduction JavaScript is one of the most influential and flexible programming languages in existence, thus forming the base for modern web development. Being among the core technologies of the web—like HTML and CSS—this language helps developers cr...20 likesJavaScript
abhishek kumaraksilearntocoder.hashnode.dev·Aug 4, 2024Lets Learn C# With OOPS from basicsFirst we will start with some simple basic code and then we will elaborate each line of code one by one. Basic C# code:- Write a Code in Notepad :- using System; class Employee { public int id; public static void Main() { Employee obj=new Employee(...80 readsdotnet
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·May 25, 2024JavaScript Execution Context: Everything You Need to KnowJavaScript is a synchronous, single-threaded language. This might sound complex, but let's break it down to understand what it really means and how it affects the way JavaScript executes code. JavaScript is a synchronous, single-threaded language. Th...10 likes·32 readsJavascript BasicsJavaScript
Ritochit Ghoshritochit.hashnode.dev·May 11, 2024Dissecting JavaScript IIntroduction JavaScript is an interpreted programming language used to create interactive and dynamic websites. JavaScript was created by Brendan Eich in May 1995, within 10 days. Eich worked at Netscape and implemented JavaScript for their web brows...60 likes·117 readsJavaScript
Utkarsh Dangarhutkarshdangarh.hashnode.dev·May 5, 2024Understanding JavaScript Execution Context, Functional Execution Context, and Call StackIntroduction JavaScript is a synchronous single threaded language which means It can execute one task at a time in particular order, To manage this execution order and track the state of functions being called, it utilises the concepts of execution c...JavaScript function execution order
Peddinti Sriram Bharadwajsriram9217javascript.hashnode.dev·May 2, 2024Hoisting in JavascriptPrerequisite:- Before getting into the details, let us now cover some topics that help build the mindset needed to understand the runtime dynamic behavior of JavaScript. Before a computer program is executed, it is either compiled or interpreted. Whe...JavaScript
Nicanor Talks Webblog.nicanor.me·Mar 19, 2024JavaScript Under the hoodJavaScript, the language of the web, breathes life into interactive interfaces and dynamic applications. While writing JavaScript code feels intuitive, its execution involves a fascinating interplay between the browser and the engine under the hood. ...38 readsJavaScript