Classes & Objects
Classes model real-world entities with properties and methods.
class Course {
constructor(public title: string) {}
}
console.log(new Course("TS-101").title);Try it Yourself
TypeScript Tutorial
Classes model real-world entities with properties and methods.
class Course {
constructor(public title: string) {}
}
console.log(new Course("TS-101").title);