Advertisement
hxxxrz

Untitled

May 7th, 2019
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. class Media {
  2. constructor(title, isCheckedOut = false, ratings = []) {
  3. this._title = title;
  4. this._isCheckedOut = isCheckedOut;
  5. this._ratings = ratings;
  6. }
  7.  
  8. class Book extends Media {
  9. constructor(author, title, pages) {
  10. super(title);
  11. super(isCheckedOut);
  12. super(ratings);
  13. this._author = author;
  14. this._pages = pages;
  15. }
  16.  
  17. const historyOfEverything = new Book ('Bill Bryson', 'A Short History of Nearly Everything', 544);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement