If statement

Updated: 11/16/2019 by Computer Hope
if statement

An if statement is a programming conditional statement that, if proved true, performs a function or displays information. Below is a general example of an if statement, not specific to any particular programming language.

if (X < 10) {
 print "Hello John";
}

In the example above, if the value of X were equal to any number less than 10, the program displays, "Hello John" when the script is run.

Tip

See the conditional statement definition for further information and some basic programming examples.

Conditional expression, Else, Elseif, Exists, If else, Logical decision, Programming terms, Statement