Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
Solution: Adding New Properties to the Book Class
Solution for Adding New Properties to the Book Class
The updated constructor method for the Book class should look like this:
class Book {
constructor(title, author, isbn) {
this.title = title;
this.author = author;
this.isbn = isbn;
this.patron = null;
this.dueDate = null;
this.out = false;
}
}
Th...