max = a > b ? a : b;
max = max > c ? max : c;
Chat with our AI personalities
The answer depends on what you are converting from: binary, ternary, octal, hexadecimal ...
You can use one of the Math.max() methods, or the ternary operator, that is, one of the following: Math.max(a, b) a > b ? a : b
Ternary.
mnnk
9