and
Jump to navigation
Jump to search
and() Function
This function performs a logical AND comparison between all of the passed numeric values. A value of 0 is
false
and all non-zero values are treated as true
Usage
and(n1, n2, ...)
Parameters
n1
- Numbern2
- Numbern3+
- Number
Example
[r: and(1,1)]
[r: and(1,1,0)]
Returns:
1
0