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

Keytron Brown
Keytron Brown
15,828 Points

Why are there no more hints to these challenges????

Cant figure out what im doing wrong. Can I have some help here?

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

      }
    }
}

1 Answer

Currently you are checking if players name equals players turn. That never gonna result in true, unless players name is true.

Since you need to check if its players turn you need to check for isTurn property. (if its players turn - isTurn property will be true, if its not players turn - isTurn property will be false) so your if statement should look something like this

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

(if isTurn value will be true the if block will run, if isTurn value will be false it will not run.)