0 / 60 seg.

What value is obtained when executing the following code?

const maximum = (a, b) => (a > b ? a : b);
console.log(maximum(2, 3));