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 Object-Oriented JavaScript Object Basics Filling Out the Play Method

I tried my solution on my IDE and it is all right there but still doesn't work here!

I tried my solution on my IDE and it is all right there but still doesn't work here!

object.js
const player1 = {
    name: 'Ashley',
    color: 'purple',
    isTurn: true,
    play: function(play){        
      if (player1.isTurn){        
      }
    }
}

1 Answer

Steven Parker
Steven Parker
229,732 Points

An IDE is not very useful for code challenges as it can only detect syntax errors, it has no idea if you are meeting the challenge objectives.

But the challenge should have given you this message: "Bummer: ... Are you using the this keyword?". That's a hint that the internal code should not refer to the object by name, but instead it should use the "this" keyword.

The instructions also did not ask for a parameter to be added to the function.