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

Do you mind reviewing my code.

I would like to get my code reviewed. I would like to know if i am outputting the value of the play method. I can use do notation to use it as a property correct. object.property . It is saying the the string return is wrong.

object.js
const player1 = {
    name: 'Ashley',
    color: 'purple',
    isTurn: true,
    play: function(){
        // write code here.

      if(this.isTurn){
          return ` ${this['name']} is now playing! `;
          console.log(player1.play);
           } 

    }
}

1 Answer

Steven Parker
Steven Parker
230,946 Points

You basically have it, but your output string has extra spaces at the start and end. Just remove those to pass the challenge.

Also, you don't need the console..log line. Nothing after a "return" statement will ever be executed anyway.