??? 05/28/12 23:54 Read: times |
#187568 - I have learned something new because of this Responding to: ???'s previous message |
Per said:
An expression with multiple || will (and must) end evaluation on first true.
An expression with multiple && will (and must) end evaluation on first false. Completely true. This is called Short-circuit evaluation and details can be found here: http://en.wikipedia.org/wiki/Shor...evaluation Pretty good for being able to point to this out, Per. |