$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

How to Research and Compare Fertility Care Information Online

Introduction Researching reproductive health and family-building options on the internet can quickly become overwhelming. Anyone starting this journey faces an avalanche of unfamiliar clinical terminology, widely varying…

Read More

Architecting for Impact: The Executive Guide to High-Visibility Website Design

Introduction A company website serves as the primary anchor for its digital identity. Potential clients, partners, and job seekers visit a website to evaluate whether an organization…

Read More

The Smart Explorer’s Blueprint: Finding the Best of Hyderabad Online

Introduction: From Search to Local Experience A weekend outing or an evening plan rarely begins at the venue door. For most people, it starts with an open…

Read More

Student and Parent Guide to Finding Tutors, Coaching Institutes, and Degree Pathways

Introduction Education decisions in India shape long-term career opportunities, personal growth, and family investments. Every year, millions of school students manage board syllabus requirements, prepare for national…

Read More

The Executive Guide to Business Website Design: Uniting UX, SEO, and Brand Growth

Introduction A company website serves as the operational hub of its online presence. It represents the brand, delivers product and service information, answers buyer inquiries, and facilitates…

Read More

Master Guide to Business Website Planning: Essential Steps Before Development Starts

Introduction Jumping directly into wireframes, design mockups, or source code without an overarching blueprint is one of the most expensive mistakes a company can make. When organizations…

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