Logical operators
Liquid includes many logical and comparison operators.
You can use operators to create logic with control flow tags.
Naxai supports the following operators:
Operator | Description |
---|---|
== | equals |
!= | does not equal |
> | greater than |
< | less than |
>= | greater than or equal to |
<= | less than or equal to |
or | logical or |
and | logical and |
contains | checks for the presence of a string or substring (part of a string) |
Updated over 1 year ago