Logical Comparisons
A logical comparison is an expression which evaluates to TRUE or FALSE. These may use the equals (=), not-equals (!=), greater-than (>), greater-than-or-equal (>=), less-then (<) and less-than-or-equal (<=) operators, e.g.
Note that when comparing text values, the equals ( and not-equals (!=) operators are case-insensitive.
@(contact.age > 18)
Note that when comparing text values, the equals ( and not-equals (!=) operators are case-insensitive.
Updated on: 30/11/2021
Thank you!