Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

and(cond1, cond2,..,condN) Returns the result of a logical AND operation on two or more arguments.

Function: and() / &&

Returns the result of a logical AND operation on two or more arguments. I.e. if all the passed arguments are true (or are non-null and non-zero), then and() will return true.

...