Source: BookMore.js

//http://usejsdoc.org/about-getting-started.html
//Adding more information with tags.
/**
 * Represents a book.
 * @constructor
 * @param {string} title - The title of the book.
 * @param {string} author - The author of the book.
 */
function BookMore(title, author) {
}