Tag: JAVASCRIPT OPP
JavaScript Abstract Classes

Abstraction is a general implementation rather than an internal implementation. For example, you have a bulb and you deal with it using the switch button. We only know, how to switch on and switch off the bulb. But we don’t know, how to switch buttons work internally.
Read More »JavaScript Static Keyword

Static is a very special keyword in javascript. In another language, it’s used for memory management. Let’s take an example to understand. Suppose that you have a Student class and students can be related with different courses and…
Read More »JavaScript Class Inheritance

Extending a Class Inheritance is a mechanism by a witch one object acquires all the properties and behaviours of a parent object. But to understand the concept of class you need to understand the concept of Class. Mainly…
Read More »JavaScript Classes

Es6 introduces a lot of powerful keywords in javascript and class is one of those powerful keywords. Before es6 in javascript, we didn’t have any keywords to manage the class. A class describes how to make an object…
Read More »