To create new objects, classes need a special method called the constructor(). This method sets the property values for a new object.
constructor()
class Book { constructor() { } }