Definition: The else clause within an if statement specifies code that is to be run when the condition attached to the if statement evaluates to false or zero. Else is a reserved word and cannot be used for anything other than declaring an else clause within an if statement.
Examples: if (a == b) {...} else {...}

