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

Mathew McRae
Mathew McRae
1,613 Points

Creating empty if statement in 'play' method using dot notation

I've tried the following inside player1.play method: if isTurn { ... } if this.isTurn { ... } if isTurn === true { ... } if this.isTurn === true { ... }

None of these seem to work in terms of creating an empty if statement inside the 'play' method.

Thanks in advance.

Mathew

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

        }
    }
}

2 Answers

Rohald van Merode
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Rohald van Merode
Treehouse Staff

Hi Matthew Walter 👋

Looks like you're missing the parentheses around the conditional.

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

Thanks Rohald and thanks for the answer. I was getting myself mixed up with Python. I've now included the parentheses. I was also missing "this.isTurn" within the parentheses.

Thanks again for your help.