$min
The$min operator returns the smaller 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 smaller of the two input values
Examples
Numeric Comparison
5
String Comparison
"apple"

