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 trialxczurymqdj
2,289 PointsIm haveing issues with this final else clause that i need to do and im not sure what im doing wrong, if someone can help
Im doing the challenge task 1 or final else clause and im so lost on what im doing wrong so please help me?
const isAdmin = false;
const isStudent = false;
let message;
if ( isAdmin ) {
message = 'Welcome admin';
} else if ( isStudent ) {
message = 'Welcome student';
}
if ( ... ) {...
}
else if ( ... ) {...
}
else {...
}
3 Answers
Steven Parker
231,186 PointsA couple of hints:
- you already have the "if" and "else if", so you won't need to add another of either of those
- you'll still need to assign the string from the instructions to "message" within the block
xczurymqdj
2,289 PointsIm not understanding what you are meaning sorry.
Steven Parker
231,186 PointsPerhaps comments added directly to the code will be more clear, see the code I added to my answer.
xczurymqdj
2,289 Pointssorry thank you so much for you help
Steven Parker
231,186 PointsSteven Parker
231,186 Points