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 trialAndrew Robida
15,296 Points"this" quiz is annoying
really not understanding this challenge
var contact = {
firstName:"Andrew",
lastName:"Chalkley",
fullName: function() {
var fullName=(firstName+lastName);
console.log(this.fullName);
};
};
1 Answer
Zoltán Rajcsányi
6,426 PointsThe solution is that:
var contact = {
firstName: "Andrew",
lastName: "Chalkley",
fullName: function() {
console.log(this.firstName + " " + this.lastName);
}
}
A suggested you to read this article: http://www.phpied.com/3-ways-to-define-a-javascript-class/
Andrew Robida
15,296 PointsAndrew Robida
15,296 Pointsthank you i figured "this" out earlier but I appreciate the help!