Imagine you have some code.
...some code...Later you discover you only want to run it sometimes.
if (condition)
...some code...Even later you discover a reason not to run the code.
if (condition)
if (not other condition)
...some code...As a reader, it's easy to get lost in the nested conditions. Tidy the above to:
