0 / 60 seg.

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

function suma(a = 2, b = 3) {
  return a + b;
}
console.log(suma());