Or are we all sticking to our taught \"&&, ||, !\" way?
Any thoughts in why we should use one or the other?
I\'m just wondering because several answe
I like the idea of the not operator because it is more visible than the ! operator. For example:
not
!
if (!foo.bar()) { ... } if (not foo.bar()) { ... }
I suggest that the second one is more visible and readable. I don't think the same argument necessarily applies to the and and or forms, though.
and
or