DEV Community

Abhay Yt
Abhay Yt

Posted on

Understanding Classes and Inheritance in JavaScript

Classes and Inheritance in JavaScript

JavaScript classes provide a modern way to handle object-oriented programming (OOP) concepts such as inheritance, encapsulation, and polymorphism. In this guide, we will explore how to create classes, how inheritance works in JavaScript, and how to extend classes to create more complex objects.


1. Classes in JavaScript

In ES6, JavaScript introduced a cleaner and more intuitive syntax for creating objects using the class keyword.

Syntax for Defining a Class:

class ClassName {
  constructor() {
    // Initialization code
  }
  methodName() {
    // Method code
  }
}
Enter fullscreen mode Exit fullscreen mode

Example of a Basic Class:

class Animal {
  constructor(name, type) {
    this.name = name;
    this.type = type;
  }
  speak() {
    console.log(`${this.name} makes a sound.`);
  }
}

const dog = new Animal('Buddy', 'Dog');
dog.speak();  // Output: Buddy makes a sound.
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • Constructor Method: The constructor method is a special function used to initialize objects created from the class.
  • Instance Methods: Functions defined inside a class are instance methods, which can be called on instances of the class.

2. Inheritance in JavaScript

Inheritance allows one class to inherit the properties and methods from another class. In JavaScript, this can be achieved using the extends keyword.

Syntax for Inheritance:

class ChildClass extends ParentClass {
  constructor() {
    super(); // Calls the parent class constructor
    // Additional initialization code for child class
  }
}
Enter fullscreen mode Exit fullscreen mode

Example of Inheritance:

class Animal {
  constructor(name) {
    this.name = name;
  }
  speak() {
    console.log(`${this.name} makes a sound.`);
  }
}

class Dog extends Animal {
  constructor(name, breed) {
    super(name); // Call the parent class constructor
    this.breed = breed;
  }
  speak() {
    console.log(`${this.name}, the ${this.breed}, barks.`);
  }
}

const dog = new Dog('Buddy', 'Golden Retriever');
dog.speak();  // Output: Buddy, the Golden Retriever, barks.
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • super(): The super keyword calls the constructor of the parent class to initialize inherited properties.
  • Overriding Methods: The child class can override methods from the parent class, as seen in the speak() method above.

3. Inheritance and Method Overriding

In JavaScript, when a child class overrides a method of the parent class, the child class version of the method is used. This is known as method overriding.

Example of Method Overriding:

class Animal {
  constructor(name) {
    this.name = name;
  }
  speak() {
    console.log(`${this.name} makes a sound.`);
  }
}

class Cat extends Animal {
  speak() {
    console.log(`${this.name} meows.`);
  }
}

const cat = new Cat('Whiskers');
cat.speak();  // Output: Whiskers meows.
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • When a child class provides its own implementation of a method, it overrides the parent class method.
  • The child class can still call the parent class method using super.method().

4. Multiple Inheritance (Not Directly Supported)

JavaScript does not directly support multiple inheritance, meaning a class cannot inherit from multiple classes simultaneously. However, you can work around this limitation by using mixins.

Example of a Mixin:

const flyMixin = {
  fly() {
    console.log(`${this.name} is flying.`);
  }
};

class Bird {
  constructor(name) {
    this.name = name;
  }
}

Object.assign(Bird.prototype, flyMixin);

const bird = new Bird('Sparrow');
bird.fly();  // Output: Sparrow is flying.
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • Mixins are a way to add functionality to a class without using inheritance.
  • You can "mix" in properties and methods from one object into another using Object.assign().

5. Static Methods and Properties

Static methods and properties belong to the class itself rather than instances of the class. They are called directly on the class.

Example of Static Methods:

class MathUtil {
  static add(a, b) {
    return a + b;
  }
}

console.log(MathUtil.add(5, 3));  // Output: 8
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • Static methods are useful for utility functions that don't require instance-specific data.

6. Getters and Setters

Getters and setters allow you to define special methods for getting and setting object properties. These are commonly used for encapsulating the state of an object.

Example of Getters and Setters:

class Person {
  constructor(name) {
    this._name = name;
  }

  get name() {
    return this._name;
  }

  set name(newName) {
    this._name = newName;
  }
}

const person = new Person('Alice');
console.log(person.name);  // Output: Alice
person.name = 'Bob';
console.log(person.name);  // Output: Bob
Enter fullscreen mode Exit fullscreen mode

Key Points:

  • Getter: Defines how a property value is accessed.
  • Setter: Defines how a property value is updated.

7. Summary

  • Classes provide a modern way to create objects and manage their behaviors using methods.
  • Inheritance allows one class to inherit properties and methods from another, making it easier to extend functionality.
  • Method overriding allows child classes to change or extend behavior from parent classes.
  • JavaScript also supports static methods, mixins, and getter/setter functions for enhanced functionality and encapsulation.

Classes and inheritance are essential concepts in object-oriented programming, and understanding them will help you write cleaner, more maintainable JavaScript code.

Hi, I'm Abhay Singh Kathayat!
I am a full-stack developer with expertise in both front-end and back-end technologies. I work with a variety of programming languages and frameworks to build efficient, scalable, and user-friendly applications.
Feel free to reach out to me at my business email: kaashshorts28@gmail.com.

Top comments (0)