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 trialJohana Lopez Diaz
6,063 PointsI tried my solution on my IDE and it is all right there but still doesn't work here!
I tried my solution on my IDE and it is all right there but still doesn't work here!
const player1 = {
name: 'Ashley',
color: 'purple',
isTurn: true,
play: function(play){
if (player1.isTurn){
}
}
}
1 Answer
Steven Parker
231,184 PointsAn IDE is not very useful for code challenges as it can only detect syntax errors, it has no idea if you are meeting the challenge objectives.
But the challenge should have given you this message: "Bummer: ... Are you using the this keyword?". That's a hint that the internal code should not refer to the object by name, but instead it should use the "this" keyword.
The instructions also did not ask for a parameter to be added to the function.