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

what is the answer?

what is the answer?

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",
        greet:genericGreet()
      }

      var ryan = {
        name: "Ryan"
        greet:genericGreet()
      }

    </script>
  </body>
</html>
Hugo Paz
Hugo Paz
15,622 Points

Hi fuad,

What is the question?

it asks me to add andrew and ryan genericGreet function, and I have done this but it gives error(Parse error)

1 Answer

Hugo Paz
Hugo Paz
15,622 Points

You forgot to put a comma after the name in the ryan object and you just need to pass the variable name to greet, like this:

var andrew = {
        name: "Andrew",
        greet:genericGreet
      }

      var ryan = {
        name: "Ryan",
        greet:genericGreet
      }

The way you did it passes the return value from that function and assigns it to greet, this means the greet value will be "Hi, my name is ".

thank you mister!