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 trialRoger Dailey
14,887 PointsI do not understand what it is asking?
I'm lost on what it is asking me to do?
var contact = {
firstName: "Andrew",
lastName: "Chalkley",
fullName: function(){
console.log(this.firstName + " " + this.lastName);
}
}
1 Answer
danheffernan
10,004 PointsInstead 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.
Roger Dailey
14,887 PointsRoger Dailey
14,887 PointsInstead of logging out the full name, modify the code so it returns the string instead. This is the challenge task.