We need a way of specifying the unique values a new object will have. We do that by sending parameters to the constructor method.
Here, we'll pass the author
and then title
as parameters to the constructor method.
class Book {
constructor(author, title) {
}
}