DEV Community

Cover image for JavaScript Classes Decoded: Step-by-Step Tutorial with Examples
chintanonweb
chintanonweb

Posted on

JavaScript Classes Decoded: Step-by-Step Tutorial with Examples

Classes in JavaScript: A Comprehensive Guide

Introduction

JavaScript, being one of the most popular programming languages, offers developers a powerful toolset to build dynamic and interactive web applications. One of the key features that enhance the maintainability and organization of code in JavaScript is the use of classes. In this article, we will explore what classes are in JavaScript and how to effectively use them in your projects.

Understanding Classes in JavaScript

What are Classes in JavaScript?

Classes are a fundamental concept in object-oriented programming (OOP), allowing developers to create blueprints for objects. In JavaScript, classes provide a way to define the structure and behavior of objects, making it easier to manage and reuse code.

How to Define a Class

In JavaScript, you can define a class using the class keyword followed by the name of the class. Let's create a simple class called Car:

class Car {
  constructor(make, model) {
    this.make = make;
    this.model = model;
  }

  displayInfo() {
    console.log(`This car is a ${this.make} ${this.model}.`);
  }
}
Enter fullscreen mode Exit fullscreen mode

In the above example, we've defined a Car class with a constructor method that initializes the make and model properties of the car. Additionally, we have a displayInfo method that logs information about the car to the console.

Creating Instances of a Class

Once a class is defined, you can create instances of that class using the new keyword:

const myCar = new Car('Toyota', 'Camry');
myCar.displayInfo(); // Output: This car is a Toyota Camry.
Enter fullscreen mode Exit fullscreen mode

Utilizing Classes in JavaScript Applications

Inheritance

One of the powerful features of classes is inheritance, which allows a class to inherit properties and methods from another class. Let's extend the Car class to create a ElectricCar class:

class ElectricCar extends Car {
  constructor(make, model, batteryCapacity) {
    super(make, model);
    this.batteryCapacity = batteryCapacity;
  }

  displayInfo() {
    super.displayInfo();
    console.log(`It has a battery capacity of ${this.batteryCapacity} kWh.`);
  }
}
Enter fullscreen mode Exit fullscreen mode

In the ElectricCar class, we use the extends keyword to inherit from the Car class. The super keyword is used to call the constructor of the parent class.

Static Methods

Static methods belong to the class itself and are called on the class, not on instances of the class. They are useful for utility functions that are not tied to a specific instance. Here's an example:

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

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

Getters and Setters

Getters and setters allow you to control access to properties of an object. Getters are used to get the value of a property, while setters are used to set the value of a property. Let's illustrate this with an example:

class Rectangle {
  constructor(width, height) {
    this._width = width;
    this._height = height;
  }

  get area() {
    return this._width * this._height;
  }

  set width(value) {
    if (value > 0) {
      this._width = value;
    } else {
      console.error('Width must be a positive number.');
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

In the Rectangle class, we define a getter for the area property and a setter for the width property. This allows us to control how the width is set and accessed.

FAQs

1. Can a class inherit from multiple classes in JavaScript?

No, JavaScript does not support multiple inheritance. A class can only inherit from a single parent class.

2. Are classes in JavaScript hoisted?

No, unlike function declarations, class declarations are not hoisted. They must be declared before they are used.

3. Can I extend built-in JavaScript objects like Array or Object?

Yes, you can extend built-in JavaScript objects, but it's generally not recommended as it can lead to unexpected behavior.

Conclusion

In this article, we've covered the basics of classes in JavaScript and how to effectively use them in your projects. Classes provide a way to organize and structure your code, making it easier to manage and maintain. By leveraging features like inheritance, static methods, getters, and setters, you can build robust and scalable applications in JavaScript. Experiment with classes in your projects to see how they can improve your development workflow and code quality.

Top comments (1)

Collapse
 
ahmadadibzad profile image
Ahmad Adibzad

Nice tutorial