What value is obtained when executing the following code?
const maximum = (a, b) => (a > b ? a : b);
console.log(maximum(2, 3));
What value is obtained when executing the following code?
const maximum = (a, b) => (a > b ? a : b);
console.log(maximum(2, 3));