Last updated: Oct 29, 2021

Objects

In JavaScript, an object is a standalone entity, with properties and type. Compare it with a cup, for example. A cup is an object, with properties. A cup has a color, a design, weight, a material it is made of, etc. The same way, JavaScript objects can have properties, which define their characteristics.
Objects in JS
This article covers Objects in JS in detail.
Object References and Copying in JavaScript
In this blog, we will discuss how to copy objects in JavaScript. We will also discuss deep copy and shallow copy along with their pros and cons.
Iterations on Objects EASY
This article incorporates the various methods of how the Iterations on Objects occur in detail.
Global Objects in JavaScript
A global object exists in the global scope at all times. In this article, we will learn how to declare and use global objects in JavaScript.
Memory management in JavaScript
In this article, we will discuss the concept of memory management in JavaScript.
“New” Constructor operator in JavaScript EASY
This blog discusses the constructor in JavaScript, and how any function behaves when called a constructor.
Getter and Setter in JavaScript
Getters and setters in JavaScript are methods used to access (get) or update (set) an object's property values, providing control over data manipulation and encapsulating property behaviour.
Optional chaining
This article begins its discussion with the introduction of optional chaining, why do we need them and how they came into existence. Then, cover short-circuit and some conclusions.
Converting Object to Primitives in JavaScript EASY
This blog will discuss the topic of the object to primitive conversion, which includes their definitions and conversion along with codes.
Flags and Descriptors
In this article, we are introduced with property flags, non-writable, non-enumerable, non-configurable, and some of the important methods like object.defineProperties, and many more.
Prototypes/ Inheritance in Javascript
In this blog post, I’ll explain Prototype-Object and Prototypal Inheritance in JavaScript with appropriate examples.
Object Prototype EASY
In this blog, we will learn about Object Prototypes in Javascript, how the prototype chain works, and the use of prototypes.