Else

This section assumes you have read the if section. The else function will always be the last logical branch that is returned from an if statement. All if statements must have an else branch.


if (value 1) comparison operator (value 2)

    then

        the result if above comparison is true

    else

        the result if above comparison is false