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

Michael Bates
13,344 PointsUnderstanding "this" Task 2 of 2
This task requires that I access properties of the variable using "this". How do I solve this?
var contact = {
firstName : "Andrew",
lastName : "Chalkley",
fullName: function() {
console.log(firstName + " " + lastName);
}
}
2 Answers

Julian Gutierrez
19,325 PointsYou need to access the properties using dot notation.
object.property
But in this case you use the this keyword to represent your object.
this.yourproperty

Michael Bates
13,344 PointsAhhhh.... nevermind!! I referred back to the MDN and figured out what you meant! Thanks for the help, Julian!
Michael Bates
13,344 PointsMichael Bates
13,344 PointsIn this instance, would it be this.fullName?