Read My Blogs

JavaScript Basics

Global Execution Context

August 2021

Every thing in JavaScript happens inside an Execution Context. Execution Context is the block which operates at back-end (behind the seen) by JavaScript engine. An Execution Context is created each time the program run. Execution Context have Lexical Environment.

JavaScript is very beautiful language. Read the blog you will know the reason why…

Read More

JavaScript Basics

Block, Shadowing and Closures in JavaScript

August 2021

Block is also known as Compound Statement.Block is a multiple line statement which is treated as single line in JavaScript. Block Scope: When all variables and functions can be accessible inside the block is known as block scope.

“let and const are blocked scope” want to know how read the blog…

Read More

JavaScript Basics

Event Loop in JavaScript

November 2021

The job of Event Loop is to check whether there is anything inside call stack and if its empty and take function from callback queue(also called Task Queue) to call stack to get executed.

want to know how read the blog…

Read More