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

Add an else if clause that tests if the isStudent variable is true. If it's true, set the value of the message variable

I keep getting "Bummer: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test" help please

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

if ( isAdmin ) {
  alert('Welcome administrator')
} else if ( isStudent) {
  alert('Welcome student');
}

1 Answer

Hi! It is asking you to assign the "message" variable a string: "Welcome student" if "isStudent" = true. You do not need to alert the message, just assign the message to the variable "message". It should look something like this:

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

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

I hope this helps! Tell me if you need further explanation, i am happy to help.