What is an if statement?

Featured image

An if statement, in programming terms, is a condition statement. When the condition is satisfied, it performs an action (or block of code)

If you ever asked yourself how apps or websites decide if a view should be shown; chances are there is an if statement.

An if statement is the most basic method to decide if a certain block of code should be executed or not based on a condition.

You can liken it to making a simple decision: _ “Should I go outside and take a walk?” _

If the answer to this is _Yes _ you have to put on your shoes (that’s the block of code that needs to be executed if the condition is met). So in programmatic terms it could look something like this:

if (takeWalkOutside) {
    // put on your shoes
}

If you decide not to go outside (the takeWalkOutside condition is not met), the action of putting on your shoes (the code inside the if statement) is skipped.