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 Object-Oriented JavaScript (2015) Introduction to Methods Understanding this

Don't understand this

What is the right solution here?

object.js
var contact = {
  fullName: function() {
  firstName : "Andrew",
  lastName : "Chalkley"
    console.log(firstName + " " + lastName);  
  }
}

2 Answers

Steven Parker
Steven Parker
229,732 Points

You need to place your properties in the object but outside of the method.

You converted the variable syntax into property syntax, but they are still inside the method. Now move them so they are peers to the fullName method.

I'll bet you can do it now without an explicit spoiler.

andren
andren
28,558 Points

You have placed the firstName and lastName property inside of the fullName function, which is not where they belong. If you move them outside the function like this:

var contact = {
  fullName: function() {
    console.log(firstName + " " + lastName);  
  },
  firstName : "Andrew",
  lastName : "Chalkley"
}

Then you'll be able to pass task 1.