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 trialJane Yount
4,522 PointsHow to figure out this question?
Add an else if clause that tests if the isStudent variable
const isAdmin = false; const isStudent = true; let message;
const isAdmin = false;
const isStudent = true;
let message;
if(isAdmin === true) {
console.log('Welcome student')
}
else if() {
}
1 Answer
Mark Sebeck
Treehouse Moderator 37,799 PointsHi Jane. So you have the correct format for the else if. You just need to add the condition. Also you do not want to change what they have for the first if statement. That will just confuse the the code checker. So go back to the original code. So add the condition just like they have. With a bool you donβt have to check if itβs true just say if (isStudent) and then use the message variable not the console.log
Hope that helps and keep at it Jane!
const isAdmin = false;
const isStudent = true;
let message;
if ( isAdmin ) {
message = 'Welcome admin';
} else if () {
}