conditional expression
In programming, an expression that evaluates to true or false, used in control flow statements like if, while, etc.
If the conditional expression in the if statement is true, that block is executed.
この条件式は常に偽になるので、ループは一度も実行されない。
Since this conditional expression always evaluates to false, the loop never runs.