0 / 60 seg.

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

function sumaCon(x) {
  return function(y) {
    return x + y;
  };
}
const sumaCon2 = sumaCon(2);
console.log(sumaCon2(3));