DEV Community

Cover image for Mastering Control Flow in JavaScript - The Beginners Guide To Javascript(Part 2)
Cameron Lucas
Cameron Lucas

Posted on

Mastering Control Flow in JavaScript - The Beginners Guide To Javascript(Part 2)

Welcome to the wonderful world of Control Flow in JavaScript! This is an exciting topic that can help you create more dynamic and interactive web pages. In this blog post, we'll explore the ins and outs of Control Flow in JavaScript, from conditional expressions to looping statements, with some fun examples along the way.

What is Control Flow?

Control Flow refers to the order in which statements are executed in a program. It's like a set of instructions that tell the computer what to do and in what order. In JavaScript, Control Flow is crucial for making decisions and repeating actions based on certain conditions.

There are two types of Control Flow: sequential and conditional. Sequential control flow executes statements one after another in the order they are written. Conditional control flow allows the program to make decisions based on certain conditions.

Let's dive deeper into conditional control flow with conditional expressions.

Conditional Expressions

A conditional expression is a statement that evaluates to true or false. It's like asking a question and getting a yes or no answer. In JavaScript, there are a few different ways to write conditional expressions.

The if statement

The if statement is the most common way to write a conditional expression in JavaScript. It's used to execute a block of code if a condition is true.

if (condition) {
  // code to execute if condition is true
}
Enter fullscreen mode Exit fullscreen mode

For example, let's say we want to check if a number is even. We can use the if statement to execute a block of code if the number is indeed even.

const number = 4;

if (number % 2 === 0) {
  console.log("The number is even");
}
Enter fullscreen mode Exit fullscreen mode

This will log "The number is even" to the console because 4 is indeed even.

The else statement

The else statement is used in conjunction with the if statement. It's used to execute a block of code if the if statement's condition is false.

if (condition) {
  // code to execute if condition is true
} else {
  // code to execute if condition is false
}
Enter fullscreen mode Exit fullscreen mode

Let's modify our previous example to include an else statement. We'll log "The number is odd" to the console if the number is not even.

const number = 5;

if (number % 2 === 0) {
  console.log("The number is even");
} else {
  console.log("The number is odd");
}
Enter fullscreen mode Exit fullscreen mode

This will log "The number is odd" to the console because 5 is not even.

The else if statement

The else if statement is used in conjunction with the if statement and the else statement. It's used to execute a block of code if a condition is true, but only if the previous condition was false.

if (condition1) {
  // code to execute if condition1 is true
} else if (condition2) {
  // code to execute if condition2 is true
} else {
  // code to execute if all conditions are false
}
Enter fullscreen mode Exit fullscreen mode

Let's modify our previous example again to include an else if statement. We'll log "The number is divisible by 3" to the console if the number is divisible by 3, but not even.

const number = 9;

if (number % 2 === 0) {
  console.log("The number is even");
} else if (number % 3 === 0) {
  console.log("The number is divisible by 3");
} else {
  console.log("The number is odd");
}
Enter fullscreen mode Exit fullscreen mode

This will log "The number is divisible by 3" to the console because 9 is divisible by 3, but not even.

Branching Statements

Branching statements are used to control the flow of execution in a program. They allow you to jump to different parts of your code depending on certain conditions.

The switch statement

The switch statement is used to execute different blocks of code depending on the value of a variable or expression. It's like a multiple-choice question where each answer corresponds to a different block of code.

switch (expression) {
  case value1:
    // code to execute if expression equals value1
    break;
  case value2:
    // code to execute if expression equals value2
    break;
  default:
    // code to execute if expression doesn't match any cases
}
Enter fullscreen mode Exit fullscreen mode

Let's say we want to log a message depending on the day of the week. We can use the switch statement to execute different blocks of code depending on the day.

const day = "Monday";

switch (day) {
  case "Monday":
    console.log("It's Monday, let's conquer the week!");
    break;
  case "Friday":
    console.log("It's Friday, time to relax!");
    break;
  default:
    console.log("Just another day...");
}
Enter fullscreen mode Exit fullscreen mode

This will log "It's Monday, let's conquer the week!" to the console because the day variable is set to "Monday".

Looping Statements

Looping statements allow you to repeat a block of code multiple times. They will loop until a certain condition is met.

The while loop

The while loop is used to repeat a block of code while a condition is true.

while (condition) {
  // code to execute while condition is true
}
Enter fullscreen mode Exit fullscreen mode

Let's say we want to log the numbers 1 through 5 to the console. We can use a while loop to repeat the code until we reach 5.

let number = 1;

while (number <= 5) {
  console.log(number);
  number++;
}
Enter fullscreen mode Exit fullscreen mode

This will log the numbers 1 through 5 to the console.

The for loop

The for loop is used to repeat a block of code a specific number of times. It's like a countdown where you know how many times you need to repeat the code.

for (initialization; condition; increment) {
  // code to execute while condition is true
}
Enter fullscreen mode Exit fullscreen mode

Let's say we want to log the numbers 1 through 5 to the console again. We can use a for loop to repeat the code 5 times.

for (let i = 1; i <= 5; i++) {
  console.log(i);
}
Enter fullscreen mode Exit fullscreen mode

This will also log the numbers 1 through 5 to the console.

Bonus Material

Here are a few more tips and tricks for working with Control Flow in JavaScript:

  • Use parentheses to group complex conditions: if ((condition1 || condition2) && condition3) { ... }
  • Use the ternary operator for simple if/else statements: const message = condition ? "True message" : "False message";
  • Use the break statement to exit out of a loop or switch statement: while (true) { if (condition) { break; } }

Control Flow is a powerful tool for creating dynamic and interactive web pages. With conditional expressions, branching statements, and looping statements, you can create complex logic that can make your web pages more engaging for your users. So go forth and use Control Flow to create amazing web pages!

Top comments (0)