A feature of some languages to skip certain code at runtime that doesn't affect the outcome, especially when testing compound conditions
Preparing for the Oracle Certified Associate Java SE 8 Programmer 1 exam, I came across the following paragraph about the ternary expression …
java ternary-operator java-6 short-circuitingI've become fond of PHP's support for the "short ternary", omitting the second expression: // PHP $foo = 'hello'; $bar = ''; echo $…
php javascript ternary-operator short-circuiting