MPMadhurjya Peguinmigom6.hashnode.dev·Jul 8, 2021 · 5 min readDissecting objects in JavaScriptIntroduction JavaScript objects are key-value pairs. These are also known as properties. These properties in turn have different attributes which define the behavior of these properties ([[...]]). In this article, we'll see how to control these attri...00
MPMadhurjya Peguinmigom6.hashnode.dev·Jul 4, 2021 · 4 min readFun with FunctionsIntroduction We know that functions are special objects in JavaScript. One way to distinguish functions from other reference type(objects) is that every function will have an internal property [[Call]]. In this post we will explore hoisting, function...00
MPMadhurjya Peguinmigom6.hashnode.dev·Jun 20, 2021 · 4 min readTypes in JavaScriptThere are mainly two types of variables in JavaScript: Primitive types and Reference types. JavaScript tracks these variables for a particular scope in a variable object. Primitive types are directly stored inside the variable object, while for refer...00