My Blog

My WordPress Blog

My Blog

My WordPress Blog

Day: July 14, 2025

Classes

JavaScript Classes The JavaScript classes are a blueprint or template for object creation. They encapsulate the data and functions to manipulate that data. We can create the object using classes. Creating an object from a class is referred to as instantiating the class. In JavaScript, the classes are built on prototypes. The classes are introduced to JavaScript […]

Tempate Literals

JavaScript Tempate Literals In JavaScript, the template literals are introduced in ES6 to customize the string dynamically. The template literals allow you to add variables or expressions into the string, and the string changes according to the variables and expression value changes. There are multiple synonyms words used for the template literal words. For example, template string, […]

Sets

A JavaScript Set object is a collection of unique values. Each value can only occur once in a Set. A Set can hold any value of any data type. The sets are introduced to JavaScript in ECMAScript 6 (ES6). JavaScript Sets are similar to Arrays, but there are some key differences: JavaScript Sets are often used to store unique […]

Scroll to top