Conditional statements are used to perform different actions based on different conditions.
Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.
In JavaScript we have the following conditional statements:
Use the if statement to execute some code only if a specified condition is true.
if (condition) { code to be executed if condition is true } |
Note that if is written in lowercase letters. Using uppercase letters (IF) will generate a JavaScript error!
Example
|
Notice that there is no ..else.. in this syntax. You tell the browser to execute some code only if the specified condition is true.
Use the if....else statement to execute some code if a condition is true and another code if the condition is not true.
if (condition) { code to be executed if condition is true } else { code to be executed if condition is not true } |
Example
|
Use the if....else if...else statement to select one of several blocks of code to be executed.
if (condition1) { code to be executed if condition1 is true } else if (condition2) { code to be executed if condition2 is true } else { code to be executed if condition1 and condition2 are not true } |
Example
|
Copyright © 2011 - All Rights Reserved - Softron.in
Template by Softron Technology