We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ce656 commit 7e08b21Copy full SHA for 7e08b21
get-started/ch2.md
@@ -607,7 +607,7 @@ class Book extends Publication {
607
super(
608
bookDetails.title,
609
bookDetails.author,
610
- bookDetails.publishedOn
+ bookDetails.pubDate
611
);
612
this.publisher = bookDetails.publisher;
613
this.ISBN = bookDetails.ISBN;
@@ -643,7 +643,7 @@ Now consider using these child classes:
643
var YDKJS = new Book({
644
title: "You Don't Know JS",
645
author: "Kyle Simpson",
646
- publishedOn: "June 2014",
+ pubDate: "June 2014",
647
publisher: "O'Reilly",
648
ISBN: "123456-789"
649
});
0 commit comments