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 Understanding this

Understanding "this" Task 2 of 2

This task requires that I access properties of the variable using "this". How do I solve this?

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

2 Answers

Julian Gutierrez
Julian Gutierrez
19,325 Points

You 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

In this instance, would it be this.fullName?

Ahhhh.... nevermind!! I referred back to the MDN and figured out what you meant! Thanks for the help, Julian!