and
ts
const and: OperatorFn;Defined in: operations.ts:314
Performs a logical AND across all arguments.
Remarks
Evaluated sequentially: a && b && c is evaluated as (a && b) && c
All arguments are converted to boolean before evaluation.
Param
Primitive arguments
Returns
true if all arguments are truthy, otherwise false
Since
1.0.0
Author
Simon Kovtyk
Author
David Schummer