constchapter1 = newChapter(); // this line range constchapter2 = newChapter(); // shall be included constchapter3 = newChapter(); // in the example constbook = newBook("The Lord of the Rings", [chapter1, chapter2, chapter3]); console.log(book.chapters.length); // 3
Class representing a chapter.
Example