1. javascript
  2. /basics
  3. /conditional-statements

Conditional Statements in JavaScript

Conditionals in JavaScript

JavaScript allows developers to control the flow of their code by using conditionals. Conditionals are statements that check whether a certain condition is true or false and, based on the result, execute a specific code block. In this article, we will discuss the three main types of conditionals in JavaScript: if statements, else if statements, and switch statements. In addition, we will also cover the ternary operator which is a shorthand way of writing a simple if-else statement.

If Statements

The if statement is the most basic type of conditional in JavaScript. It is used to check if a certain condition is true and, if it is, execute a specific code block. The syntax for an if statement is as follows:

if (condition) {
  // code to be executed if the condition is true
}

For example, the following code checks if a person's age is greater than or equal to 21 and, if it is, prints a message to the console:

let age = 25;
if (age >= 21) {
  console.log("You are old enough to drink!");
}

It's important to note that the if statement only checks one condition and only the code block within the if statement will be executed if that condition is true. In addition, if the condition within the if statement is false, the code within the block will be skipped and not executed.

Else If Statements

else if statements are used in conjunction with if statements to check for multiple conditions. If the condition in the initial if statement is false, the code checks the next else if statement's condition, and so on. The syntax for an else if statement is as follows:

if (condition1) {
  // code to be executed if condition1 is true
} else if (condition2) {
  // code to be executed if condition1 is false and condition2 is true
}

For example, the following code checks if a person's age is less than 21. If it is, a message "You are not old enough to drink!" is printed to the console. If not, the code then checks if the age is greater than or equal to 21. If it is, another message "You are old enough to drink!" is printed to the console.

let age = 25;
if (age < 21) {
  console.log("You are not old enough to drink!");
} else if (age >= 21) {
  console.log("You are old enough to drink!");
}

It's important to note that an if statement must always come before an else if statement and only one of the code block within the if or else if statement will be executed. Also if the first condition is true, the code block within the first if statement will be executed and the else if statement will be skipped.

Switch Statements

The switch statement is another way to check for multiple conditions in JavaScript. The basic syntax of a switch statement is as follows:

switch (expression) {
  case value1:
    // code to be executed if expression === value1
    break;
  case value2:
    // code to be executed if expression === value2
    break;
  default:
    // code to be executed if expression does not match any case
}

For example, the following code checks the value of a variable named "color" against several cases. If the value of color is "red", a message "The color is red." is printed to the console. If the value of color is "green", another message "The color is green." is printed to the console. If the value of color is neither "red" nor "green", the default case will be executed and a message "The color is not red or green." is printed to the console.

let color = "blue";
switch (color) {
    case "red":
        console.log("The color is red.");
        break;
    case "green":
        console.log("The color is green.");
        break;
    default:
        console.log("The color is not red or green.");
}

It's important to note that a switch statement compares the value of the expression to the values within each case, and the code block of the matching case will be executed. Also, it's important to include the break statement at the end of each case block, to avoid the code execution falling through to the next case.

Ternary Operator

The ternary operator is a shorthand way of writing a simple if-else statement. The basic syntax of the ternary operator is as follows:

condition ? value1 : value2;

This can be read as "if condition is true, return value1, otherwise return value2". For example:

let age = 25;
let canDrink = age >= 21 ? "can drink" : "cannot drink";
console.log(canDrink);

In this example, the code is checking if the age is greater than or equal to 21. If it is, the variable canDrink is assigned the value "can drink", otherwise, it's assigned the value "cannot drink". It's a shorthand and a more concise way of writing a simple if-else statement.

Common Mistakes

  • Omitting curly braces {}: A common mistake for beginners is to forget to include curly braces after an if, else if, or switch statement. This can result in only the first line following the statement being executed, rather than the entire block of code intended.

  • Forgetting the break statement in a switch statement: As mentioned earlier, it's important to include the break statement at the end of each case block in a switch statement, to avoid the code execution falling through to the next case.

  • Using assignment operator (=) instead of comparison operator (==, ===) in the conditions : This is a common mistake that can cause the condition to always evaluate to true and execute the code block even when it's not intended.

  • Neglecting the default case in a switch statement: In cases where none of the cases match the expression, the code within the default case will be executed. It's important to include a default case in a switch statement, in case none of the cases match the expression.

Conclusion

We discussed the four main types of conditionals in JavaScript: if statements, else if statements, switch statements and ternary operator. We covered the syntax, usage, and examples of each type of conditional statements. Additionally, we also discussed some common mistakes that beginners might make when using conditionals. Understanding how to use these different types of conditionals is an important part of mastering JavaScript and controlling the flow of the code. With a good grasp of these concepts, you'll be able to write more efficient and robust code.