If Else Statement in JavaScript

Conditional Statements The conditional statements are used to perform different actions for different decisions. Just like any other languages, JavaScript has the following conditional statements: if for specifying a block of code to be executed, when a specified condition becomes true else to specify a block of code to be executed, when the condition is false else … Read more

PHP if else, else if Statements with examples

There are few conditional statements in PHP that is been used for putting different conditions. All the statements are as follows: 1. PHP if statement It execute that code only if the situation is true otherwise not. if statement Syntax:

Example:

ResultPHP! 2. PHP if else statement If true then execute the result, … Read more