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

How do I complete this code challenge? Object-Oriented Javascript

Hello! Could someone tell me what I'm doing wrong here? I appreciate your help!

object.js
const player1 = {
    name: 'Ashley',
    color: 'purple',
    isTurn: true,
    play: function(){
      if(this.isTurn){
      return(this[name] + 'is now playing');
    }
}

2 Answers

Hello Jamela you're very close but it seems as though you are missing a closing } for your if statement.

If you take notice you'll see you have 3 opening {

  1. For the if
  2. For the function
  3. For the object literal

but only 2 closing }. Add in another closing } and you'll be good to go.

Hi Jamela :)

as Juan pointed out, you need an extra }. In addition, for the bracket notation you need to put name into quotes. So the correct code should be:

const player1 = { name: 'Ashley', color: 'purple', isTurn: true, play: function(){ if(this.isTurn){ return(this['name'] + 'is now playing'); } } }