| 2 | |
| 3 | //Book Object |
| 4 | class Book{ |
| 5 | constructor(title="Unknown",author="Unknown",isRead){ |
| 6 | this.title = title; |
| 7 | this.author = author; |
| 8 | this.isRead = isRead; |
| 9 | } |
| 10 | } |
| 11 | //Book Array |
| 12 | let myLibrary = []; |
| 13 | //Adding a new Book |
nothing calls this directly
no outgoing calls
no test coverage detected