DEV Community

Cover image for JavaScript Classes 101: A Beginner's Guide to Object-Oriented Programming
Yosi Leyid for Hasidic Development Group

Posted on • Updated on

JavaScript Classes 101: A Beginner's Guide to Object-Oriented Programming

Introduction

JavaScript is one of the most popular programming languages in use today. It is a versatile language that is used for a variety of purposes, including web development, game development, and server-side scripting. One of the most important features of JavaScript is its support for object-oriented programming (OOP), which allows developers to create classes that represent real-world objects and encapsulate their behavior and data.

In this blog post, we will explore the concept of classes in JavaScript, and how they can be used to create reusable and maintainable code. We will cover the syntax and semantics of classes, as well as their relationship with objects and inheritance. We will also discuss some best practices for using classes in your code.

What are classes in JavaScript?

A class in JavaScript is a blueprint for creating objects. It defines the properties and methods that an object will have, as well as any behavior that the object should exhibit. Classes can be thought of as templates or prototypes for objects, which are instantiated (i.e. created) based on their class definition.

Classes were introduced in ECMAScript 6, the latest version of the JavaScript language, as a way to make OOP in JavaScript more intuitive and easier to use. Prior to ECMAScript 6, developers used a combination of constructor functions and prototype chains to achieve OOP in JavaScript. Classes provide a more structured and organized way to define objects, and are designed to be more familiar to developers who are used to OOP in other programming languages.

The syntax of a JavaScript class

The syntax of a JavaScript class is relatively simple. Here is an example of a class definition:

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

  sayHello() {
    console.log("Hello, my name is " + this.name + " and I am " + this.age + " years old.");
  }
}
Enter fullscreen mode Exit fullscreen mode

This class is called Person and has two properties, name and age, as well as one method, sayHello(). The constructor() method is a special method that is called when an object is created based on the class. It sets the initial values of the object's properties. The sayHello() method is a regular method that can be called on an instance of the class.

To create an object based on a class, you use the new keyword, like this:

let person1 = new Person("John", 30);
let person2 = new Person("Jane", 25);

person1.sayHello(); // Output: "Hello, my name is John and I am 30 years old."
person2.sayHello(); // Output: "Hello, my name is Jane and I am 25 years old."
Enter fullscreen mode Exit fullscreen mode

In this example, we create two objects based on the Person class, and call the sayHello() method on each object.

The relationship between classes and objects

In JavaScript, classes and objects are closely related. A class defines the properties and methods that an object will have, but an object is an instance of a class that has its own unique values for those properties. When you create an object based on a class, you are creating an instance of that class, which inherits all the properties and methods of the class.

For example, if we create a class called Car:

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

  start() {
    console.log("The " + this.make + " " + this.model + " is starting.");
  }

  stop() {
    console.log("The " + this.make + " " + "is stopping.");
  }
}
Enter fullscreen mode Exit fullscreen mode

Inheritance in JavaScript classes

Inheritance is an important concept in OOP, and JavaScript classes support inheritance. Inheritance allows you to create a new class based on an existing class, which inherits all the properties and methods of the parent class. The new class can then add its own properties and methods, or override the properties and methods of the parent class.

To create a subclass, you use the extends keyword, like this:

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

  speak() {
    console.log(this.name + " makes a noise.");
  }
}

class Dog extends Animal {
  speak() {
    console.log(this.name + " barks.");
  }
}

let dog = new Dog("Fido");
dog.speak(); // Output: "Fido barks."
Enter fullscreen mode Exit fullscreen mode

In this example, we create a class called Animal that has a name property and a speak() method. We then create a subclass called Dog that extends the Animal class using the extends keyword. The Dog class overrides the speak() method of the Animal class, so that it now outputs "barks" instead of "makes a noise".

When we create an instance of the Dog class, it inherits the properties and methods of the Animal class, and we can call the speak() method on the Dog object.

Best practices for using classes in JavaScript

Here are some best practices for using classes in your JavaScript code:

  • Use classes for creating complex objects with multiple properties and methods. If you only need a simple object with a few properties, a plain object literal may be sufficient.
  • Use meaningful names for your classes, that describe the objects they represent. For example, if you're creating a class for a car, use the name Car.
  • Use proper indentation and formatting to make your code more readable. This is especially important when working with classes, which can have many properties and methods.
  • Keep your class definitions short and focused. If a class has too many properties and methods, it may be a sign that it needs to be refactored into multiple smaller classes.
  • Use inheritance sparingly, and only when it makes sense for your use case. Overusing inheritance can lead to complex and difficult-to-maintain code.
  • Use access modifiers such as public, private, and protected to control access to the properties and methods of your class. This can help prevent unintended changes to the state of your objects.

Conclusion

JavaScript classes are a powerful feature that allow developers to create reusable and maintainable code. Classes provide a structured and organized way to define objects, and make it easier to implement OOP in JavaScript. With their support for inheritance and access modifiers, classes in JavaScript provide a flexible and powerful way to create complex and extensible code.

By following best practices and using classes in a thoughtful and intentional way, you can create code that is easy to read, understand, and maintain, even as your codebase grows in complexity.

Top comments (3)

Collapse
 
fruntend profile image
fruntend

Сongratulations 🥳! Your article hit the top posts for the week - dev.to/fruntend/top-10-posts-for-f...
Keep it up 👍

Collapse
 
codeofrelevancy profile image
Code of Relevancy

Great post..

Collapse
 
ant_f_dev profile image
Anthony Fung

This is a good explanation of Object Oriented Programming in JavaScript. I noticed one thing though - ES6 is no longer the latest version of JavaScript. There is a page on w3schools that summarises the features in each edition.