While writing a program, there may be a situation when you need to adopt one out of a given set of paths. In such cases, you need to use conditional statements that allow your program to make correct decisions and perform right actions.
Solidity supports conditional statements which are used to perform different actions based on different conditions. Here we will explain the if..else statement.
The following flow chart shows how the if-else statement works.
Solidity supports the following forms of if..else statement −
Sr.No | Statements & Description |
---|---|
1 |
The if statement is the fundamental control statement that allows Solidity to make decisions and execute statements conditionally. |
2 |
The 'if...else' statement is the next form of control statement that allows Solidity to execute statements in a more controlled way. |
3 |
The if...else if... statement is an advanced form of if...else that allows Solidity to make a correct decision out of several conditions. |