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

are these not strings? "The `contact.firstName` should be a string and so should contact.lastName'

I removed the var declaration, but I still end up with an error: The contact.firstName should be a string and so should contact.lastName.

I rewatched the video a few times, but I still must not be comprehending something.

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

2 Answers

Daniel Languiller
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Daniel Languiller
Full Stack JavaScript Techdegree Graduate 33,396 Points

Just need to move them out of the function.

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

Perfect - thanks. I thought I had tried that!

I had tried different attempts with the: firstName: "Andrew", lastName: "Chalkey",

but I had left them in the function, and then finally tried again with the way I listed it above.