$100 Website Offer

Get your personal website + domain for just $100.

Limited Time Offer!

Claim Your Website Now

JavaScript Condition

In JavaScript, you can use conditional statements to execute different code blocks based on different conditions. The main types of conditional statements are:

1. If Statement:

The if statement executes a block of code if a specified condition is true.

let x = 10;

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

2. If-Else Statement:

The if-else statement executes one block of code if the condition is true, and another block if the condition is false.

let x = 3;

if (x % 2 === 0) {
    console.log("x is even");
} else {
    console.log("x is odd");
}

3. Else-If Statement:

The else if statement allows you to specify multiple conditions to be tested.

let x = 0;

if (x > 0) {
    console.log("x is positive");
} else if (x < 0) {
    console.log("x is negative");
} else {
    console.log("x is zero");
}

4. Switch Statement:

The switch statement allows you to test a variable against multiple values and execute different code blocks based on which value it equals to.

let day = "Monday";

switch (day) {
    case "Monday":
        console.log("It's Monday!");
        break;
    case "Tuesday":
        console.log("It's Tuesday!");
        break;
    default:
        console.log("It's another day of the week");
}

5. Ternary Operator:

The ternary operator ? : is a concise way to write conditional statements.

let x = 10;
let message = (x > 5) ? "x is greater than 5" : "x is less than or equal to 5";
console.log(message);

Conditional statements are fundamental for controlling the flow of your JavaScript code, allowing you to execute different blocks of code based on specific conditions. They are powerful tools for building dynamic and interactive applications.

6. Switch Statements:

Switch statements in JavaScript provide a way to execute different code blocks based on the value of an expression. The syntax of a switch statement looks like this:

switch (expression) {
  case value1:
    // Code block to be executed if expression matches value1
    break;
  case value2:
    // Code block to be executed if expression matches value2
    break;
  // Additional cases as needed
  default:
    // Code block to be executed if expression doesn't match any case
}

Here’s how it works:

  • The switch keyword is followed by the expression whose value you want to test.
  • Each case specifies a value to compare the expression against. If the expression matches a case value, the corresponding code block is executed.
  • The break statement is used to exit the switch block once a match is found. If omitted, execution will continue to the next case, even if the condition doesn’t match.
  • The default case is optional and is executed if none of the cases match the expression.

Example:

let day = 3;
let dayName;

switch (day) {
  case 1:
    dayName = 'Monday';
    break;
  case 2:
    dayName = 'Tuesday';
    break;
  case 3:
    dayName = 'Wednesday';
    break;
  case 4:
    dayName = 'Thursday';
    break;
  case 5:
    dayName = 'Friday';
    break;
  case 6:
    dayName = 'Saturday';
    break;
  case 7:
    dayName = 'Sunday';
    break;
  default:
    dayName = 'Invalid day';
}

console.log(dayName); // Output: Wednesday

Switch statements are useful when you have a single expression with multiple possible values and want to execute different code based on each value. They provide a cleaner and more readable alternative to multiple if-else statements in such cases.

Related Posts

CMS Website Development Checklist: A Step-by-Step Guide for Business Owners

Introduction Your website is the digital headquarters of your business. It operates as your 24/7 sales representative, your primary marketing asset, and the first point of contact…

Read More

How to Choose the Right CMS for Your Business Website

Introduction A website serves as the digital engine of a modern business, but the software powering it determines how fast, secure, and adaptable that engine truly is….

Read More

Common CMS Website Mistakes and How to Avoid Them

Introduction A Content Management System (CMS) offers an accessible way to build, manage, and update a website without needing to write code from scratch. Because platforms like…

Read More

The Amaravati Discovery Guide: Sightseeing and Local Events

Introduction Amaravati is a destination where thousands of years of history, profound spiritual heritage, and evolving modern regional dynamics intersect. Situated along the southern banks of the…

Read More

Navigating DataOps Courses, Certifications, and Professional Services

Introduction Modern organizations rely on fast, accurate, and accessible data to drive operations, customer experiences, and strategic decisions. Yet, as data volumes grow and data architectures expand…

Read More

Integrating AI Software Development with Cloud and DevOps Pipelines

Introduction Modern software engineering has moved far beyond traditional application coding and routine deployments. Organizations across industries are racing to build intelligent, cloud-native platforms capable of processing…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x