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 Add an 'else if' Clause

Jane Yount
Jane Yount
4,522 Points

How to figure out this question?

Add an else if clause that tests if the isStudent variable

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

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


if(isAdmin === true) {
    console.log('Welcome student')
  }

  else if() {

  }

1 Answer

Mark Sebeck
MOD
Mark Sebeck
Treehouse Moderator 37,353 Points

Hi Jane. So you have the correct format for the else if. You just need to add the condition. Also you do not want to change what they have for the first if statement. That will just confuse the the code checker. So go back to the original code. So add the condition just like they have. With a bool you don’t have to check if it’s true just say if (isStudent) and then use the message variable not the console.log

Hope that helps and keep at it Jane!

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

if ( isAdmin ) {
  message = 'Welcome admin';
} else if () {
}