This is related to a chapter from beautiful code. And in that chapter I read about the nested ifs.
if
The author was talking about deeply nested if>
if>
Another example some languages allow is this
switch true{ case i==0 //action break case j==2 //action break case i>j //action break }