/** @module bookshelf */ /** @class */ var Book = function(title) { /** The title of the book. */ this.title = title; }; /** @class */ this.BookShelf = function(title) { /** The title of the bookshelf. */ this.title = title; };