public, private, and protected Modifiers
Control access to class members with modifiers.
public, private, and protected Modifiers is a free TypeScript Academy lesson on CoddyKit — lesson 2 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the TypeScript Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Welcome
public: Accessible Everywhere
class Car {
public brand: string;
constructor(brand: string) { this.brand = brand; }
}
const c = new Car('Toyota');
console.log(c.brand); // OKprivate: Class-Only Access
class BankAccount {
private balance: number = 0;
deposit(n: number) { this.balance += n; }
}
const a = new BankAccount();
// a.balance; // Error!protected: Class and Subclass Access
class Animal {
protected name: string;
constructor(name: string) { this.name = name; }
}
class Dog extends Animal {
bark() { console.log(this.name + ' says woof!'); } // OK
}Compile-Time Only Enforcement
JavaScript Private with #
class Counter {
#count = 0; // runtime private (JavaScript)
increment() { this.#count++; }
get value() { return this.#count; }
}readonly Modifier
class User {
readonly id: number;
constructor(id: number) { this.id = id; }
}
const u = new User(1);
// u.id = 2; // Error!Combining Modifiers
class Config {
constructor(
public readonly host: string,
private readonly port: number
) {}
}private on Constructor
class Singleton {
private static instance: Singleton;
private constructor() {}
static getInstance(): Singleton {
return this.instance ??= new Singleton();
}
}protected Constructor
class Base {
protected constructor(public id: number) {}
}
class Derived extends Base {
constructor(id: number) { super(id); }
}Access Modifiers Don't Add Runtime Overhead
Quick Check
Recap
Frequently asked questions
Is the “public, private, and protected Modifiers” lesson free?
Yes — the full text of “public, private, and protected Modifiers” is free to read here on the web, and the TypeScript Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the TypeScript Academy course, upgrade to CoddyKit PRO.
What will I learn in “public, private, and protected Modifiers”?
Control access to class members with modifiers. You practise TypeScript Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start TypeScript Academy?
No prior experience is required. TypeScript Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “public, private, and protected Modifiers” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this TypeScript Academy lesson?
Yes. Every TypeScript Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- TypeScript Classes and Constructors
- public, private, and protected Modifiers
- readonly Properties and Parameter Properties
- Implementing Interfaces with Classes