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 trialJamela Peterson
2,983 PointsHow do I complete this code challenge? Object-Oriented Javascript
Hello! Could someone tell me what I'm doing wrong here? I appreciate your help!
const player1 = {
name: 'Ashley',
color: 'purple',
isTurn: true,
play: function(){
if(this.isTurn){
return(this[name] + 'is now playing');
}
}
2 Answers
Juan Lopez
Treehouse Project ReviewerHello Jamela you're very close but it seems as though you are missing a closing }
for your if
statement.
If you take notice you'll see you have 3 opening {
- For the
if
- For the function
- For the object literal
but only 2 closing }
. Add in another closing }
and you'll be good to go.
Inge Mationschek
6,502 PointsHi Jamela :)
as Juan pointed out, you need an extra }. In addition, for the bracket notation you need to put name into quotes. So the correct code should be:
const player1 = { name: 'Ashley', color: 'purple', isTurn: true, play: function(){ if(this.isTurn){ return(this['name'] + 'is now playing'); } } }