DEV Community

Cover image for Understanding Conditional Statements in JavaScript
lino
lino

Posted on

Understanding Conditional Statements in JavaScript

Using conditional statements, one can execute distinct code blocks in JavaScript according to specific criteria. During runtime, they enable you to make dynamic decisions and manage the program's flow. Through the ability to have your code react to various inputs or events, conditional statements let you write more dynamic and adaptable programmes.

In programming, conditionals play are used decision-making and controlling the flow of a program. Here's why they are so important:

  1. Decision-Making: Programmes can make judgements based on specific conditions thanks to conditionals. For instance, depending on whether a condition is true or false, a programme may have to determine whether to run a specific block of code. Programmers can use this feature to construct responsive, dynamic apps that can change to fit various conditions.
  2. Flow Control: By directing a program's execution route, conditionals also aid in controlling the program's flow. Programmers can specify various paths or branches for the programme to take depending on the criteria that are met during runtime by utilising conditionals. This guarantees that the application runs the right code in various scenarios and acts as planned.
  3. Flexibility: Programmers can design logic that reacts to different inputs and situations via conditionals, which gives them programming freedom. Because of this adaptability, programmers are able to create apps that are strong and adaptable to a variety of situations and user interactions.
  4. Error Handling: Programming error management requires conditionals. Developers can anticipate and manage faults or exceptional scenarios that may occur during programme execution by utilising conditionals. This enhances the software's resilience and dependability by carefully managing unforeseen circumstances.
  5. Reusability: Conditional code blocks can be reused in different parts of your program, promoting code efficiency and maintainability.

JavaScript Conditional statements Examples

1. Using if statement

In JavaScript, the if statement is a basic conditional statement. It only permits the execution of a code block when a specific condition is met. This is how it operates:

if (condition) {
  // code to be executed if the condition is true
}
Enter fullscreen mode Exit fullscreen mode

condition is the expression that is assessed. The code included in curly brackets {} is performed if the condition evaluates to true. The code block is skipped if the condition evaluates to false.

Example

let x = 10;

if (x > 5) {
  console.log("x is greater than 5");
}
Enter fullscreen mode Exit fullscreen mode

Because the value of x in this example is 10, which is greater than 5, the condition x > 5 evaluates to true. Thus, the code enclosed in curly brackets {} is run, resulting in the console printing "x is greater than 5".

2. Using if-else statement

Combining the if and else statements, the if-else statement allows you to run distinct code blocks depending on a condition. This is an explanation of how it is used in JavaScript:

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

Enter fullscreen mode Exit fullscreen mode

The expression under evaluation is condition. Code is performed inside the first set of curly braces {} if the condition evaluates to true. The code inside the else block, which is enclosed in a second pair of curly braces {}, is performed if the condition evaluates to false.

Example

let age = 15;

if (age >= 18) {
  console.log("You are eligible to vote!");
} else {
  console.log("You are not eligible to vote yet.");
}
Enter fullscreen mode Exit fullscreen mode

In this case, the message "You are an adult." is printed to the console if the age variable is greater than or equal to 18, and the condition age >= 18 evaluates to true. Alternatively, the message "You are not an adult yet." is printed if the condition is false.

3. Using else-if statements

You can test more conditions one after the other sequentially in JavaScript after an initial if statement by using the else if statement. Should the initial condition evaluate to false, it offers a means of verifying other conditions. It functions as follows:

if (condition1) {
  // code to be executed if condition1 is true
} else if (condition2) {
  // code to be executed if condition2 is true
} else if (condition3) {
  // code to be executed if condition3 is true
} else {
  // code to be executed if none of the conditions are true
}
Enter fullscreen mode Exit fullscreen mode

condition 1, condition 2, condition 3, etc.: The evaluation of these phrases happens in a sequential fashion. The code block linked to condition 1 is executed if it is true. Condition 2 is assessed in the event that condition 1 is not true. The else statement's code block is run in the event that no true condition is found, or else the process is repeated until a true condition is found.

Example

let grade = 80;

if (grade >= 90) {
  console.log("Excellent!");
} else if (grade >= 80) {
  console.log("Very good!");
} else if (grade >= 70) {
  console.log("Good job!");
} else {
  console.log("Keep practicing!");
}
Enter fullscreen mode Exit fullscreen mode

The console logs "Excellent!" if the grade is 90 or higher.
"Very good!" is recorded if the score falls between 80 and 89.
A "Good job!" message is recorded if the score falls between 70 and 79.
"Keep practicing!" is recorded if the score is less than 70.

4. Using Switch Statements

Another JavaScript conditional statement that lets you run distinct code blocks depending on an expression's value is the switch statement. It is frequently employed when there are several scenarios that could lead to the same result that need to be checked. Here is the basic syntax:

switch (expression) {
  case value1:
    // code to be executed if expression === value1
    break;
  case value2:
    // code to be executed if expression === value2
    break;
  // additional cases as needed
  default:
    // code to be executed if expression doesn't match any case
}
Enter fullscreen mode Exit fullscreen mode

The variable or expression whose value is compared with each case is expression .
case value1, case value2, etc.: The values to be compared with the expression. If the expression matches a case value, the corresponding block of code is executed.
break: Terminates the switch statement. If omitted, the code execution "falls through" to the next case.
default: Executes if none of the case values match the expression.

Example

let day = new Date().getDay();

switch (day) {
  case 0:
    console.log("It's Sunday!");
    break;
  case 1:
    console.log("It's Monday!");
    break;
  case 2:
    console.log("It's Tuesday!");
    break;
  // ... other days
  default:
    console.log("It's another day of the week!");
}
Enter fullscreen mode Exit fullscreen mode

This code snippet determines the day of the week using switch statement and outputs a message to the console accordingly. First, it uses the Date object's getDay() method to get the current day as an integer. Then, using case statements, it runs particular code blocks for each day according to the value of the day. It returns to the default message if none of the situations match.

Best Practices and Considerations for conditional statements

  1. Nesting Conditional Statements: For readability and maintainability, conditional statements should be properly nested and indented. The logic flow is easier to follow when the indentation is clear.
  2. Using Appropriate Comparison Operators: Select the right comparison operators based on the kinds of data and the conditions at hand. To prevent unexpected type coercion, for instance, use === for stringent equality comparisons.
  3. Avoiding Common Pitfalls: Avoid common mistakes like doing serious equality checks with == instead of ===. Strict equality minimises the possibility of unexpected behaviour by guaranteeing that the value and the data type are the same. ### Recap In conclusion, proficient JavaScript programming requires a solid understanding of conditional statements. These lines enable code execution based on predefined criteria, enabling developers to design responsive and dynamic applications. The flexibility, dependability, and reusability of code are improved by conditionals through decision-making, flow control, and error handling.

Throughout this article, we've explored the fundamental conditional statements in JavaScript, including if, if-else, else-if, and switch statements. Each of these statements serves a distinct purpose and offers versatility in handling various scenarios within a program.

To ensure best practices and considerations when using conditional statements, it's essential to properly nest them for readability, choose appropriate comparison operators, and avoid common pitfalls like using == instead of === for strict equality.

Here are some excellent resources to learn conditional statements in JavaScript:
MDN Web Docs - Conditional Statements
W3Schools - JavaScript Conditional Statements
JavaScript Info - If Else

Top comments (0)