Why is an else
statement always after an if
statement?
else
statement depends on the if
statement's conditionelse
statement doesn't come after an if
statementif
statement without an else
statementif
statement's code block won't run without the else
statementBecause the else
statement depends on the if
statement's condition.