var Book = function(author, title){ this.author = author || 'no author'; this.title = title || 'no title'; }