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

Roger Dailey
Roger Dailey
14,887 Points

I do not understand what it is asking?

I'm lost on what it is asking me to do?

object.js
var contact = {
  firstName: "Andrew",
  lastName: "Chalkley",
  fullName: function(){
    console.log(this.firstName + " " + this.lastName);
  }
}
Roger Dailey
Roger Dailey
14,887 Points

Instead of logging out the full name, modify the code so it returns the string instead. This is the challenge task.

1 Answer

Instead of console.log() they're asking you to to return the value. So replace console.log with the word return and remove the (). This return keyword actually returns the results of the code block back to the program where the function is called. Whereas console.log merely prints it to the console, which is useful for debugging and practice, but not for the program itself.