Is writing spaghetti code always bad?
Of the two approaches below, which is preferable, or should there be a better third approach?
Approach 1:
If Condition1 Then
Do something1
Else
Do something2
End If
If Statement1 Then
Do something1
Else
Do something2
End If...