In JavaScript if-else statements are also known as conditional statements. if-else statements are used to execute any block of code conditionally e.g. if you want to execute any code only if condition satisfies that the input entered by the user is less than 5. At this point you can use if condition.

Syntax

if (condition)
   statement1
[else
   statement2]

condition: any expressions that could considered as true or false.

statement1: the code block to be executed if the condition is true. It could be code statements or nest if-else conditions.

statement2: the code block to be executed if the condition is false. It can also be code statements or further nest if-else conditions.

There are 3 types of if conditions:

  1. if statement
  2. if-else statement
  3. if-else…if-else statement
if statement

If you have a code that you want to execute only when the condition in if statement is true and there is no other code to be executed if the condition is false.

Example
var x=10;
var y=20;   
if(x<y)
{
    alert('y is greater than x.');
}
if-else statement

If you have 2 pieces of code from which first part of the code will be executed when if condition is true and the other one will be executed when if condition is false.

Example
var x=10;
var y=5;   
if(x<y)
{
    alert('y is greater than x.');
}
else
{
    alert('x is greater than y.');
}
if…else-if…else statements

If you have number of conditions and for every condition you have another trapping if condition satisfying if condition, if...else-if...else statements can be used.

Example
var x=10;
var y=10;    
if(x<y)
{
    alert('y is greater than x.');
}
else if(x>y)
{
    alert('x is greater than y.');
}
else
{
    alert('x=y');
}

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments