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 trial

JavaScript JavaScript Basics Making Decisions in Your Code with Conditional Statements Write an 'if' Statement

How to get this one correct. I think I don't understand the scenario.

script.js
const isAdmin = true;
const isStudent = false;
let message;
if (isAdmin === true) {
    console.log('Welcome admin');
}

1 Answer

Rick Gleitz
Rick Gleitz
47,197 Points

Hi 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!