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 Add an Else If Clause

Syntax error

Im can not figure out where my syntax error is.

script.js
var isAdmin = false;
var isStudent = true;

if ( isAdmin ) {
    alert('Welcome administrator');
} else if {
  var ( isStudent ) = true
  alert('Welecome Student');
}
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>

2 Answers

Dave StSomeWhere
Dave StSomeWhere
19,870 Points

Your issue is in the else if portion - see MDN if statement

Here's what it should look like from page above:

if (x > 5) {
 /* do the right thing */
} else if (x > 50) {
 /* do the right thing */
} else {
 /* do the right thing */
}

Hi Irvans, you made some errors in your else-if clause. You didn't add the test condition appropriately, you're meant to use the 'isStudent' variable as your test in that clause and not write out the whole variable again. like you did.

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

}

And you didn't spell 'Welcome' correctly.

  alert('Welcome Student');