0 / 60 seg.

¿Qué valor se obtiene al ejecutar el siguiente código?

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