Articles in this series
As a Javascript developer, you are surely aware of the console.log() method. It is the most straightforward way to debug your code. But do you know...
Hello folks! In this part of the series, we'll learn about how Javascript works internally and what's the role of the Execution context. Understanding...
In this part of the series, we'll learn about one of the important concepts of Javascript: Hoisting. Hoisting Hoisting is a JavaScript mechanism...
Scopes and Lexical Environment are a fundamental concept of JavaScript that every JavaScript developer should know and understand. Yet, it’s a concept...
Hello folks!! Welcome to the next part of the series. Today we'll cover the most interesting concept in Javascript- Closures. Many programmers use the...
Functions are the heart 💖 of Javascript. Also, there are many jargon words used for functions in many programming languages which might confuse you...