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 Returning Values

Instead of logging out the full name, modify the code so it returns the string instead. Stuck on this.

I thought this is what they did in the lesson, but it's not working.

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

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

This question is just about changing the console.log to a return, but everything else stays the same.

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

So you were on the right track.

Jason :)

AH! Thanks Jason. I guess I was just changing too much!

Michael Fish
Michael Fish
7,804 Points

It says return THE string. There are two strings. Is he trying to say return the concatenated result of both strings? I know Andrew is a great programmer but I just wish Dave taught all the js courses. He is such a good teacher and I find I can concentrate much better on him. Of course it could just be because I have ADHD