javascript-dom-manipulation
|

JavaScript DOM Manipulation: A Beginner’s Guide

Initially, JavaScript was built to manipulate the DOM and capture user interaction. Nowadays, JavaScript is far from that and has established itself as a powerful cross-platform language. Although the old-school method may not be as popular in the modern era of React, Vue, and other libraries, it still has a place. Learning DOM manipulation helps…

javascript call stack and event loop
|

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”,…