What sorts of methods exist for prematurely exiting an if clause?
if
There are times when I\'m writing code and want to put a break statement
break
use return in the if condition will returns you out from the function, so that you can use return to break the the if condition.
return