Name

else keyword — Else part of if statement

Synopsis

               statement := if ( condition ) statement else statement
            

The else keyword introduces the else part of an if statement. If the condition is false, the else statement is executed.