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 trialMichael Glur-Zoucha
9,499 PointsI think there is something wrong with this objective. I've tried dot and bracket notation and it won't let me continue.
Why can't I get past this?
const player1 = {
name: 'Ashley',
color: 'purple',
isTurn: true,
play: function(){
if (this['isTurn']) {
console.log(`${this['name']} is now playing!`);
}
}
}
2 Answers
Rohald van Merode
Treehouse StaffHi Michael,
There's two small things that stop your code from passing. It looks like you've changed the conditional to a bracket notation as well while the first challenge was to use dot notation there. While this will be the same way the test for this challenge isn't passing because of it. You'll therefor want to change this['isTurn']
back to this.isTurn
.
As for the code inside your if statement you're now logging the string to the console. The challenge however asks you to return the string.
After these adjustments your play method should end up like this:
play: function(){
if(this.isTurn) {
return `${this['name']} is now playing!`;
}
}
Michael Glur-Zoucha
9,499 PointsThank you. That did the trick.