Lesson Overview

Hello! In this lesson, we're revisiting Encapsulation, Private Attributes, and Private Methods in Object-Oriented Programming (OOP). Imagine encapsulation as an invisible fence safeguarding a garden from outside interference, keeping data and methods safe within. Within this garden, certain plants (Private Attributes and Methods) are only for the gardener's eyes. These are crucial for making your classes more robust and secure!

Encapsulation Explained

Encapsulation in OOP wraps up data and methods into a class. This organizational approach tidies the code and reinforces security. If you were to code a multiplayer game, for example, you could create a Player class, encapsulating data (health, armor, stamina) and methods (receiveDamage, shieldHit, restoreHealth).

class Player {
    constructor(health, armor, stamina) {
        this.health = health;
        this.armor = armor;
        this.stamina = stamina;
    }

    receiveDamage(damage) {
        this.health -= damage;  // Reduce health
    }

    shieldHit(armor) {
        this.armor -= armor;  // Decrease armor
    }

    restoreHealth(healthIncrease) {
        this.health += healthIncrease;  // Restore health
    }
}

const player = new Player(100, 50, 77);

Now, player is an instance of the Player class on which you can call methods.

Remark the Privacy

In JavaScript, a # before the attribute or method name designates it as private. Note that the constructor itself cannot be private.

class PrivateExample {
    #privateAttribute;  // Declare a private field

    constructor() {
        this.publicAttribute = "Public";
        this.#privateAttribute = "Private";  // Initialize private attribute
    }

    getPrivateAttribute() {
        return this.#privateAttribute;
    }
}

const example = new PrivateExample();
console.log(example.publicAttribute);  // Works: logs "Public"
console.log(example.getPrivateAttribute());  // Works: logs "Private"
console.log(example.#privateAttribute);  // Error: can't access private attribute from outside

Private attributes and methods are inaccessible directly from an instance. This arrangement helps maintain integrity.

Private Attributes

Private Attributes, which can only be altered via class methods, limit outside interference. For instance, a BankAccount class might feature a #balance private attribute that one could change only through deposits or withdrawals.

class BankAccount {
    #balance;  // Declare a private field

    constructor(accountNumber, balance) {
        this.accountNumber = accountNumber;
        this.#balance = balance;  // Initialize the private attribute
    }

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

    getBalance() {
        return this.#balance;  // A public method to access balance
    }
}

const bankAccount = new BankAccount(1234, 100);
console.log(bankAccount.getBalance());  // Works: logs 100
console.log(bankAccount.#balance);  // Error: can't access private attribute from outside

Here, #balance is private, thus ensuring the integrity of the account balance. It can't be accessed directly from outside the class.

Private Methods

Like private attributes, private methods are accessible only within their class. Here's an example:

class BankAccount {
    #balance;  // Declare a private field

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

    // Private method
    #addInterest(interestRate) {
        this.#balance += this.#balance * interestRate;  // Calculation of interest
    }

    // Public method calling the private method
    addYearlyInterest() {
        this.#addInterest(0.02);  // Adds 2% interest
    }

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

const bankAccount = new BankAccount(1234, 100);
bankAccount.addYearlyInterest();  // Works, calling a public method
console.log(bankAccount.getBalance());  // Logs the updated balance
bankAccount.#addInterest(0.1);  // Error: can't call a private method from outside

Here, addYearlyInterest is a public method that calls the private method #addInterest.

Getters and Setters

In JavaScript, getters and setters provide a way to access and mutate private attributes indirectly while maintaining control over how values are retrieved or changed. This remains in line with the encapsulation principle by providing a controlled interface to interact with private data.

Getters

Getters allow access to the value of a private attribute in a safe, controlled manner. Here's how you can define a getter for a private attribute:

class BankAccount {
    #balance;  // Declare a private field

    constructor(accountNumber, balance) {
        this.accountNumber = accountNumber;
        this.#balance = balance;  // Initialize the private attribute
    }

    // Getter for balance
    get balance() {
        return this.#balance;
    }

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

const bankAccount = new BankAccount(1234, 100);
console.log(bankAccount.balance);  // Works: logs 100

In this example, the balance getter method provides a safe way to access the private #balance attribute.

Setters

Setters allow modification of the value of a private attribute while providing a controlled interface. Here’s how you can define a setter for a private attribute:

class BankAccount {
    #balance;  // Declare a private field

    constructor(accountNumber, balance) {
        this.accountNumber = accountNumber;
        this.#balance = balance;  // Initialize the private attribute
    }

    // Getter for balance
    get balance() {
        return this.#balance;
    }

    // Setter for balance
    set balance(amount) {
        if (amount >= 0) {
            this.#balance = amount;
        } else {
            console.log("Balance cannot be negative.");
        }
    }

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

const bankAccount = new BankAccount(1234, 100);
bankAccount.balance = 200;  // Works: sets balance to 200
console.log(bankAccount.balance);  // Works: logs 200
bankAccount.balance = -50;  // Logs: "Balance cannot be negative."

In this example, the balance setter method ensures that the #balance is only set to non-negative values, adding a layer of validation.

By using getters and setters, you can add logic for validating or transforming data, making your class more flexible and secure while adhering to encapsulation principles.

Lesson Summary and Practice

Great job refreshing your understanding of encapsulation, private attributes, and private methods concepts in JavaScript! Correctly understanding and applying these foundational principles of OOP makes your code concise, robust, and secure.

Coming up next is hands-on practice. Keep up the good work — exciting exercises are just around the corner!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal