Return the smaller value of a or b.
min( a, b )
This function returns the smaller of the two values, a or b.
a
b
If a>=b, returns the value b If a<b, returns the value a
max(3, -4)
Returns -4.