Returns the result of the logical AND operation on the corresponding bits of two arguments. Both arguments are first truncated to integers; the result will always be an integer value. In C syntax, the result of AND(a,b) is equivalent to (floor(a) & floor(b)).
Example:
____________________________
See also: