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 (Retired) Making Decisions with Conditional Statements A Basic If Statement

add a conditional statement to test to see if the isAdmin variable true. if it is then open an alert message "Welcome A"

it keeps saying Bummer! don't know where l am going wrong.

script.js
var isAdmin = true;
var isStudent = false;
if ( true ) {
  document.write ('the condition is true');
} else {
  document.write('the condition is false');
}
index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

1 Answer

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

Hi MUZ140989 Eukael Mbuyisa , there're a few issues there in your code.

  • The if conditional should be if ( isAdmin === true ) not if ( true ), according to the Code challenge description.
  • You don't need to have an else clause for this particular challenge question.
  • Your code should alert the message using the alert function instead of document.write.
  • the correct alert message is 'Welcome administrator'.
var isAdmin = true;
var isStudent = false;

if ( isAdmin === true ) {
  alert('Welcome administrator');
}

Hope it helps