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 trialSteven Carbuhn
13,020 Pointsobject oriented JS within a function.
I cannot seem to crack this one, it's giving me fits. How do you solve this one? I've tried all sorts of tricks, I've deleted the var's and put the colon in between, removed the semicolon after the object strings, etc... I just can't seem to crack this.
var contact = {
fullName: function() {
var firstName = "Andrew";
var lastName = "Chalkley";
console.log(firstName + " " + lastName);
}
}
1 Answer
Osaro Igbinovia
Full Stack JavaScript Techdegree Student 15,928 PointsHi Steven, what the challenge is telling you to do is remove the 'firstName' and 'lastName' variables from the 'fullName' method and store them in the 'contact' object as property and property value like you would in any object. For example:
var contact = {
firstName: "Andrew",
lastName: "Chalkley",
fullName: function() {
console.log(firstName + " " + lastName);
}
}
Steven Carbuhn
13,020 PointsThank you so much! out of all the web dev challenges, this is the only one that's stumped me haha. It makes perfect sense after being explained. Thanks again!
Steven Carbuhn
13,020 PointsSteven Carbuhn
13,020 PointsHere is what they are requesting
Modify this object so it uses two properties firstName and lastName and remove their variable declarations from the fullName method. Don't do anything to the console.log() call right now.