Articles in this series
Arrow functions are a new way of writing a traditional function. This way the function is shorter and quicker to write. Arrow functions were...
Just so you know: Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code...
A scope is an area/limit where your variables stay and can only be accessed by other parts of the code in the same area/limit. Sounds confusing? Let's...
Primitive and non-primitive data types in Javascript · This article specifically talks about the variable types in Javascript. The reason I dedicated an...
Variables in JavaScript are like containers that hold reusable data. These data containers need to be declared with some specific keywords in...
JavaScript is a loosely typed, interpreted scripting language. It is one of the most powerful and popular programming languages in the world. Most of...