# and: when both conditions must be true [Syntax and values](README.md) ## Behavior and details Use `and` to ask whether both questions have a true answer. Both values it checks must be Booleans. An **operand** is simply a value an operator works with: the parts to the left and right of `and`. If the left answer is `false`, the whole answer is already known, so Pliro skips the right part. This is [short-circuiting](../concepts/short-circuiting.md). A skipped part also skips any function call it contains. `and` groups more tightly than `or`, while comparisons group before both. Numbers, text, and collections are not automatically turned into yes-or-no answers. ## Example ```pliro # language: en let items = [] let found = length(items) > 0 and items[0] == 1 say found ``` ## Related entries [Syntax and values](README.md) · [Built-ins](../builtins/README.md) · [Programming guides](../guides/README.md)