From f9dd2b0a126545673aac743870b8124fc8477187 Mon Sep 17 00:00:00 2001 From: Sarthak Verma <114106172+sarthakvermaa@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:44:41 +0530 Subject: [PATCH] Objects and Constructors: Clarify project reference (#28893) --- .../objects_and_object_constructors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/organizing_your_javascript_code/objects_and_object_constructors.md b/javascript/organizing_your_javascript_code/objects_and_object_constructors.md index 5ebcd9af129..375e9908b11 100644 --- a/javascript/organizing_your_javascript_code/objects_and_object_constructors.md +++ b/javascript/organizing_your_javascript_code/objects_and_object_constructors.md @@ -132,7 +132,7 @@ player2.sayName(); // logs 'also steve' ### Exercise -Write a constructor for making "Book" objects. We will revisit this in the project at the end of this lesson. Your book objects should have the book's `title`, `author`, the number of `pages`, and whether or not you have `read` the book. +Write a constructor for making "Book" objects. We will revisit this in the next project. Your book objects should have the book's `title`, `author`, the number of `pages`, and whether or not you have `read` the book. Put a function into the constructor that can report the book info like so: