DEV Community

Cover image for Object-Oriented Programming (OOP) in JavaScript: A Complete Guide with Real-World Examples
Rafsan Jany Ratul
Rafsan Jany Ratul

Posted on

Object-Oriented Programming (OOP) in JavaScript: A Complete Guide with Real-World Examples

Object-Oriented Programming (OOP) is one of the most widely used programming paradigms in modern software development. Whether you're building a simple web application or a large-scale enterprise system, understanding OOP will help you write cleaner, reusable, and maintainable code.

Why I Started Learning OOP

While building my projects, such as a Quiz Application and a Mobile Banking Application UI, I realized that organizing code becomes increasingly important as a project grows.

Initially, managing data and functionality with simple objects and functions seemed sufficient. However, as features increased, the code became harder to maintain and reuse.

This is where Object-Oriented Programming (OOP) concepts such as classes, inheritance, encapsulation, and polymorphism started making more sense to me. OOP provides a structured way to organize code, reduce duplication, and improve scalability.

In this article, I'll share what I've learned about OOP in JavaScript with practical examples that beginners can easily follow.

In JavaScript, OOP became much easier with the introduction of ES6 Classes. In this article, we'll explore the core concepts of OOP, including:

  • Classes
  • Objects
  • Constructors
  • Inheritance
  • super()
  • Encapsulation
  • Abstraction
  • Polymorphism
  • Getters and Setters
  • Real-world examples

Let's dive in.


What is Object-Oriented Programming?

Object-Oriented Programming is a programming paradigm that organizes code around objects rather than functions.

An object contains:

  • Properties (Data)
  • Methods (Behavior)

Think of a real-world car.

A car has:

Properties:

  • Brand
  • Color
  • Speed

Behaviors:

  • Start
  • Stop
  • Accelerate

In OOP, we represent such entities using classes and objects.


Class and Object

A class is a blueprint for creating objects.

Creating a Class

class Car {
  constructor(brand, color) {
    this.brand = brand;
    this.color = color;
  }

  start() {
    console.log(`${this.brand} is starting...`);
  }
}
Enter fullscreen mode Exit fullscreen mode

Creating an Object

const car1 = new Car("Toyota", "Black");

console.log(car1.brand);

car1.start();
Enter fullscreen mode Exit fullscreen mode

Output

Toyota
Toyota is starting...
Enter fullscreen mode Exit fullscreen mode

Here:

  • Car is a class
  • car1 is an object

Understanding Constructors

A constructor is a special method that automatically runs when an object is created.

class User {
  constructor(name, email) {
    this.name = name;
    this.email = email;
  }
}

const user1 = new User(
  "Ratul",
  "ratul@gmail.com"
);

console.log(user1);
Enter fullscreen mode Exit fullscreen mode

Output:

User {
  name: 'Ratul',
  email: 'ratul@gmail.com'
}
Enter fullscreen mode Exit fullscreen mode

The constructor initializes the object's data.


Instance Methods

Methods define what an object can do.

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

  greet() {
    console.log(
      `Welcome ${this.name}`
    );
  }
}

const user = new User("Ratul");

user.greet();
Enter fullscreen mode Exit fullscreen mode

Output:

Welcome Ratul
Enter fullscreen mode Exit fullscreen mode

Inheritance

Inheritance allows one class to inherit properties and methods from another class.

This reduces code duplication.

Parent Class

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

  introduce() {
    console.log(
      `My name is ${this.name}`
    );
  }
}
Enter fullscreen mode Exit fullscreen mode

Child Class

class Student extends Person {
  constructor(name, department) {
    super(name);

    this.department = department;
  }

  study() {
    console.log(
      `${this.name} studies ${this.department}`
    );
  }
}
Enter fullscreen mode Exit fullscreen mode

Usage

const student = new Student(
  "Ratul",
  "Computer Science"
);

student.introduce();
student.study();
Enter fullscreen mode Exit fullscreen mode

Output:

My name is Ratul
Ratul studies Computer Science
Enter fullscreen mode Exit fullscreen mode

The Student class automatically inherits the introduce() method.


Understanding super()

The super() keyword is used to call the parent class constructor.

Example:

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

class Dog extends Animal {
  constructor(name, breed) {
    super(name);

    this.breed = breed;
  }
}

const dog = new Dog(
  "Buddy",
  "Golden Retriever"
);

console.log(dog);
Enter fullscreen mode Exit fullscreen mode

Output:

Dog {
  name: "Buddy",
  breed: "Golden Retriever"
}
Enter fullscreen mode Exit fullscreen mode

Without super(), JavaScript will throw an error.


Encapsulation

Encapsulation means hiding internal data and exposing only necessary functionality.

Modern JavaScript provides private fields using #.

class BankAccount {
  #balance;

  constructor(balance) {
    this.#balance = balance;
  }

  deposit(amount) {
    this.#balance += amount;
  }

  getBalance() {
    return this.#balance;
  }
}

const account =
  new BankAccount(1000);

account.deposit(500);

console.log(
  account.getBalance()
);
Enter fullscreen mode Exit fullscreen mode

Output:

1500
Enter fullscreen mode Exit fullscreen mode

Trying to access:

account.#balance
Enter fullscreen mode Exit fullscreen mode

will produce an error because the field is private.

This protects sensitive data.


Abstraction

Abstraction means hiding implementation details and exposing only what's necessary.

Consider a coffee machine.

You press a button and get coffee.

You don't need to know:

  • How water heats up
  • How beans are processed
  • How pressure is generated

Similarly:

class CoffeeMachine {
  makeCoffee() {
    this.#boilWater();
    console.log(
      "Coffee is ready"
    );
  }

  #boilWater() {
    console.log(
      "Boiling water..."
    );
  }
}

const machine =
  new CoffeeMachine();

machine.makeCoffee();
Enter fullscreen mode Exit fullscreen mode

Output:

Boiling water...
Coffee is ready
Enter fullscreen mode Exit fullscreen mode

Users only interact with makeCoffee().


Polymorphism

Polymorphism means "many forms."

Different classes can implement the same method differently.

class Animal {
  speak() {
    console.log("Animal sound");
  }
}

class Dog extends Animal {
  speak() {
    console.log("Bark");
  }
}

class Cat extends Animal {
  speak() {
    console.log("Meow");
  }
}

const dog = new Dog();
const cat = new Cat();

dog.speak();
cat.speak();
Enter fullscreen mode Exit fullscreen mode

Output:

Bark
Meow
Enter fullscreen mode Exit fullscreen mode

The same method behaves differently depending on the object.

This is polymorphism.


Method Overriding

Overriding happens when a child class replaces a parent class method.

class User {
  login() {
    console.log(
      "User logged in"
    );
  }
}

class Admin extends User {
  login() {
    console.log(
      "Admin logged in"
    );
  }
}

const admin =
  new Admin();

admin.login();
Enter fullscreen mode Exit fullscreen mode

Output:

Admin logged in
Enter fullscreen mode Exit fullscreen mode

The child method overrides the parent method.


Getters and Setters

Getters and setters help control access to object properties.

class Product {
  constructor(price) {
    this.price = price;
  }

  get formattedPrice() {
    return `$${this.price}`;
  }

  set updatePrice(value) {
    this.price = value;
  }
}

const product =
  new Product(100);

console.log(
  product.formattedPrice
);

product.updatePrice = 150;

console.log(
  product.formattedPrice
);
Enter fullscreen mode Exit fullscreen mode

Output:

$100
$150
Enter fullscreen mode Exit fullscreen mode

Real-World Example: Employee Management System

Imagine you're building a company dashboard.

class Employee {
  constructor(name, salary) {
    this.name = name;
    this.salary = salary;
  }

  getDetails() {
    console.log(
      `${this.name} earns $${this.salary}`
    );
  }
}
Enter fullscreen mode Exit fullscreen mode

Developer Class:

class Developer extends Employee {
  constructor(
    name,
    salary,
    language
  ) {
    super(name, salary);

    this.language = language;
  }

  code() {
    console.log(
      `${this.name} develops applications using ${this.language}`
    );
  }
}
Enter fullscreen mode Exit fullscreen mode

Manager Class:

class Manager extends Employee {
  constructor(
    name,
    salary,
    teamSize
  ) {
    super(name, salary);

    this.teamSize = teamSize;
  }

  manageTeam() {
    console.log(
      `${this.name} manages ${this.teamSize} employees`
    );
  }
}
Enter fullscreen mode Exit fullscreen mode

Usage:

const dev =
  new Developer(
    "Ratul",
    5000,
    "JavaScript"
  );

const manager =
  new Manager(
    "John",
    8000,
    10
  );

dev.getDetails();
dev.code();

manager.getDetails();
manager.manageTeam();
Enter fullscreen mode Exit fullscreen mode

Output:

Ratul earns $5000
Ratul develops applications using JavaScript

John earns $8000
John manages 10 employees
Enter fullscreen mode Exit fullscreen mode

This is how OOP is commonly used in enterprise applications.


Why OOP Matters

Benefits of OOP:

✅ Code Reusability

✅ Better Organization

✅ Easier Maintenance

✅ Reduced Duplication

✅ Scalability

✅ Cleaner Architecture

When applications grow larger, OOP becomes increasingly valuable.


The Four Pillars of OOP

Every OOP language revolves around four major concepts:

  1. Encapsulation
  2. Abstraction
  3. Inheritance
  4. Polymorphism

Mastering these concepts will significantly improve your ability to design scalable applications.


Conclusion

Object-Oriented Programming is more than just classes and objects. It's a way of organizing code that makes applications easier to build, maintain, and scale.

In this article, we explored:

  • Classes
  • Objects
  • Constructors
  • Methods
  • Inheritance
  • super()
  • Encapsulation
  • Abstraction
  • Polymorphism
  • Getters and Setters
  • Real-world examples

As you continue learning JavaScript, try applying OOP concepts in your projects such as Quiz Apps, E-commerce Applications, Dashboard Systems, and Management Platforms. The more you practice, the more natural OOP will become.

Happy Coding! 🚀

Top comments (0)