惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Object-Oriented Programming (OOP) in JavaScript: A Comple...
Rafsan Jany Ratul · 2026-06-17 · via DEV Community

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...`);
  }
}

Creating an Object

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

console.log(car1.brand);

car1.start();

Output

Toyota
Toyota is starting...

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);

Output:

User {
  name: 'Ratul',
  email: 'ratul@gmail.com'
}

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();

Output:

Welcome Ratul


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}`
    );
  }
}

Child Class

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

    this.department = department;
  }

  study() {
    console.log(
      `${this.name} studies ${this.department}`
    );
  }
}

Usage

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

student.introduce();
student.study();

Output:

My name is Ratul
Ratul studies Computer Science

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);

Output:

Dog {
  name: "Buddy",
  breed: "Golden Retriever"
}

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()
);

Output:

1500

Trying to access:

account.#balance

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();

Output:

Boiling water...
Coffee is ready

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();

Output:

Bark
Meow

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();

Output:

Admin logged in

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
);

Output:

$100
$150


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}`
    );
  }
}

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}`
    );
  }
}

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`
    );
  }
}

Usage:

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

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

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

manager.getDetails();
manager.manageTeam();

Output:

Ratul earns $5000
Ratul develops applications using JavaScript

John earns $8000
John manages 10 employees

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! 🚀