Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Practice Object Interaction The Rough Plan Demo: New Library, Patron, and Book Objects

New Patron not logging in the console, just an empty patron

When I run this and look in the console I just get an empty Patron object. Can't figure out what I am doing wrong. (adding a new book is working just as expected)

<script>
  // our test code here


  const  library = new Library();
  console.log(library);


  const book = new Book('Harry Potter and the Sorcerer\'s Stone', 'J.K. Rowling', '978-0439708180');

  const patron = new Patron('Heidi', 'heidi@gmail.com');

  console.log(book);
  console.log(patron);

</script>
class Patron {
  construcor(name, email, currentBook) {
    this.name = name;
    this.email = email;
    this.currentBook = null;
  }
}

2 Answers

Steven Parker
Steven Parker
241,485 Points

It looks like just a spelling error. You have "construcor" (one "t") instead of "constructor" (two "t"s).

Bless you!