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 trialBone Ven
498 PointsHow to get this one correct. I think I don't understand the scenario.
const isAdmin = true;
const isStudent = false;
let message;
if (isAdmin === true) {
console.log('Welcome admin');
}
1 Answer
Rick Gleitz
47,876 PointsHi Bone Ven,
You have it almost right! But instead of console.log, you need to assign 'Welcome admin' to the message variable that was declared above (but under the if statement). It will end up looking a bit different when you go to the next challenge. The next challenge sets up the if statement with just isAdmin rather than isAdmin === true, but that doesn't matter for passing this challenge (they are the same thing). Hope this helps!