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 trialDaemeon Xoenyth
5,588 PointsWhat do I do here? On 'andrew' and 'ryan', set the 'greet' method as the 'genericGreet' function.
Went over the video multiple times & tried several things but I'm still unclear on what's being asked of me in this.
<!DOCTYPE html>
<html lang="en">
<head>
<title> JavaScript Foundations: Objects</title>
<style>
html {
background: #FAFAFA;
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>JavaScript Foundations</h1>
<h2>Objects: Methods</h2>
<script>
var genericGreet = function() {
return "Hello, my name is " + this.name;
}
var andrew = {
name: "Andrew"
}
var ryan = {
name: "Ryan"
}
</script>
</body>
</html>
Daemeon Xoenyth
5,588 PointsGuess that would be helpful. Ha
1 Answer
Yulia Markina
12,616 PointsHi Ross! Try this, it worked for me. You probably forgot to put commas after names.
var andrew = {
name: "Andrew",
greet: genericGreet
}
var ryan = {
name:"Ryan",
greet: genericGreet
}
Daemeon Xoenyth
5,588 PointsThat's exactly what it was. It's always the smallest thing I'm overlooking. Thx Yulia!
Yulia Markina
12,616 PointsTotally agree, I do the same :)
huckleberry
14,636 Pointshuckleberry
14,636 PointsYa gotta post the question dude... lol