$max
The$max operator returns the larger of two values. If the values are of numeric type, it compares them numerically. If they are strings, it performs lexicographic comparison.
Input
- An array containing exactly two values to compare
Output
- The larger of the two input values
Examples
Numeric Comparison
10
String Comparison
"banana"

