Classes & Objects
Classes model real-world entities with properties and methods.
class Course {
constructor(title) { this.title = title; }
summary() { return this.title; }
}
console.log(new Course("WEB-401").summary());Try it Yourself
JavaScript Tutorial
Classes model real-world entities with properties and methods.
class Course {
constructor(title) { this.title = title; }
summary() { return this.title; }
}
console.log(new Course("WEB-401").summary());