Conditional statements in JavaScript 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:
if statement - use this statement if you want to execute some code only if a specified condition is true
if ... else statement - use this statement if you want to execute some code if the condition is true and another code if the condition is false
if ... else if ... else statement - use this statement if you want to select one of many blocks of code to be executed
switch statement - use this statement if you want to select one of many blocks of code to be executed
You should use the if statement if you want to execute some code only if a specified condition is true.
if (condition) |
Note that if is written in lowercase letters. Using uppercase letters (IF) will generate a JavaScript error!
<script type="text/javascript"> var number=50-Math.floor(100*Math.random())
if
(number < 0)
if
(number == 0)
if
(number > 0) </script> |
Note: When comparing variables you must always use two equals signs next to each other (==)!
Notice that there is no ..else.. in this syntax. You just tell the code to execute some code only if the specified condition is true.
If you want to execute some code if a condition is true and another code if the condition is not true, use the if ... else statement.
if (condition) |
<script type="text/javascript"> var number=50-Math.floor(100*Math.random())
if
(number < 0)
else
</script> |
You should use the if ... else if ... else statement if you want to select one of many sets of lines to execute.
if
(condition1) |
<script
type="text/javascript"> var number=50-Math.floor(100*Math.random())
if
(number < 0)
else
if (number == 0)
else
</script> |
To see how HTML and JavaScript work, you can only push the submit button, or you can make your own HTML and JavaScript code.