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 trialWill 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,606 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,606 PointsTomas Schaffer
11,606 PointsYou can add this line to qiuz and that is the right answer:
if (isAdmin) message = "Welcome admin";
Tomas Schaffer
11,606 PointsTomas Schaffer
11,606 PointsSorry this txt editor messing with my text....