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 JavaScript Foundations Objects Methods

Daemeon Xoenyth
Daemeon Xoenyth
5,588 Points

What 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.

index.html
<!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>
huckleberry
huckleberry
14,636 Points

Ya gotta post the question dude... lol

Daemeon Xoenyth
Daemeon Xoenyth
5,588 Points

Guess that would be helpful. Ha

1 Answer

Yulia Markina
Yulia Markina
12,616 Points

Hi 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
Daemeon Xoenyth
5,588 Points

That's exactly what it was. It's always the smallest thing I'm overlooking. Thx Yulia!

Yulia Markina
Yulia Markina
12,616 Points

Totally agree, I do the same :)