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 trialMathew McRae
1,613 PointsCreating 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
const player1 = {
name: 'Ashley',
color: 'purple',
isTurn: true,
play: function(){
if isTurn {
}
}
}
2 Answers
Rohald van Merode
Treehouse StaffHi 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
1,613 PointsThanks 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.