max(a, b)
|
Group |
Compares a and b and returns the value that is greater.
Description of Parameters
|
Parameter |
Description |
|
a |
Value. |
|
b |
Value. |
Examples
|
Parameter a |
Parameter b |
Result |
|
1 |
2 |
2 |
|
2 |
1 |
2 |
|
2 |
2 |
2 |