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

I can't seem to figure out if the i need the last two statements?

script.js
const isAdmin = true;
const isStudent = false;
let message;

if (isAdmin = true) {
  console.log("isAdmin is true");
} else if (isStudent = false) {
  console.log("isStudent is false");
} else if (message) {
  console.log("Welcome Admin");
} else (message) {
  console.log("Welcome Student");
}

3 Answers

Hi Alonzo!

This passes the whole series of challenges:

const isAdmin = false;
const isStudent = false;
let message;

if ( isAdmin ) {
  message = 'Welcome admin';
} else if ( isStudent ) {
  message = 'Welcome student';
} else {
  message = 'Access denied'; 
}

Keep in mind, that if ( isAdmin ) is logically/effectively the same as if (isAdmin == true) and is certainly easier to read,

And also 'isAdmin' and 'isStudent' are appropriate boolean variable names, and as such work really well as previously described.

I hope that helps.

Stay safe and happy coding!

Thank you and I continue to overread the question and making it seem more of a problem than it really is.

No problem...sometimes fully understanding the goal of the challenge is not always easy to grasp from the text!?!

More info:

https://www.sitepoint.com/javascript-truthy-falsy/

I hope that helps.

Stay safe and happy coding!