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

Erik L
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Erik L
Full Stack JavaScript Techdegree Graduate 19,470 Points

Javascript if and else if statements

I'm new to Javascript, I noticed that we can use else if statements consecutively, but are we also allowed to use if statement more than once also?

1 Answer

You can have multiple ifs "together", but JavaScript treats them as if they weren't related. For example...

var name = "Erik";
if (name == "Erik") {
  console.log("Yay!");
}
if (name[0] == "E") {
  console.log("Woohoo!");
}

This program will print both "Yay!" and "Woohoo!". Whereas:

var name = "Erik";
if (name == "Erik") {
  console.log("Yay!");
} else if (name[0] == "E") {
  console.log("Woohoo!");
}

It will only print "Yay!".