in reply to Re: Nested testing of many conditions--a better way?
in thread Nested testing of many conditions--a better way?

I think this code is wrong, as the or operator has a lower precedence than and, so you should either change it to || or parenthisize the last two lines of the condition.

  • Comment on Re: Re: Nested testing of many conditions--a better way?