JavaScript Tutorial

JavaScript Classes

Source: Programming with Mosh

Classes & Objects

Classes model real-world entities with properties and methods.

JAVASCRIPT
class Course {
  constructor(title) { this.title = title; }
  summary() { return this.title; }
}
console.log(new Course("WEB-401").summary());
Try it Yourself