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.

Will Ragan
1,673 Pointsim totally lost
im just not getting this part
const isAdmin = true;
const isStudent = false;
let message = ;
if (isAdmin === true){
message = 'Welcome admin';
}
1 Answer

Tomas Schaffer
11,581 PointsThis answer below is the best choice in modern javaScript even quiz accept it. But i dont wanna mess you if you are tottaly beginer //Option 1: // "if (isAdmin)" is the same like if (isAdmin == true)
//if you writing short condition statement you may write it in one line like this "if (isAdmin) message = "Welcome admin";" const isAdmin = true; const isStudent = false; let message;
if (isAdmin) message = "Welcome admin"; //Option 2: This example above works same like this: const isAdmin = true; const isStudent = false; let message;
if (isAdmin == true) { message = "Welcome admin";
}
Tomas Schaffer
11,581 PointsTomas Schaffer
11,581 PointsYou can add this line to qiuz and that is the right answer:
if (isAdmin) message = "Welcome admin";
Tomas Schaffer
11,581 PointsTomas Schaffer
11,581 PointsSorry this txt editor messing with my text....