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 trialJonathan Cost
2,418 Pointsare 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.
var contact = {
fullName: function() {
firstName = "Andrew";
lastName = "Chalkley";
console.log(firstName + " " + lastName);
}
}
2 Answers
Daniel Languiller
Full Stack JavaScript Techdegree Graduate 33,396 PointsJust need to move them out of the function.
var contact = {
firstName : "Andrew",
lastName : "Chalkley",
fullName: function() {
console.log(firstName + " " + lastName);
}
}
Jonathan Cost
2,418 PointsPerfect - 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.