Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Julien Arseneau
Full Stack JavaScript Techdegree Student 5,200 PointsWhy does it say that my answer is worng?
It tells me: " Something is incorrect. Check that you wrote an if statement inside the method. Check that you're using dot notation. Are you using the this keyword?".
const player1 = {
name: 'Ashley',
color: 'purple',
isTurn: true,
play: function(){
if ( player.isTurn === true){}
} }
1 Answer

Jackson Monk
4,527 PointsThe last question is the one you are getting wrong: "Are you using the this keyword?". In your if condition, you have:
if (player.isTurn === true) {}
When you should have:
if (this.isTurn === true) {}
Julien Arseneau
Full Stack JavaScript Techdegree Student 5,200 PointsJulien Arseneau
Full Stack JavaScript Techdegree Student 5,200 PointsEven when I add the 'this' keyword it tells me the same thing.