$lt
The$lt operator checks if the first value is less than the second value.
Input
- An array containing exactly two values to compare
Output
trueif the first value is less than the second valuefalseotherwise (including when either value is null)
Examples
Basic Comparison
true
False Comparison
false
Field Value Comparison
true if the temperature field is less than 0, otherwise false
String Comparison
true (lexicographic comparison)
