Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

129
Vistas
What's the job of "return" right underneath the if clause in this exact function? also pls explain in words how this function works ty

Write a function that returns the smallest number that’s greater or equal to 0. Especially that return right underneath if (num < 0). What's that return's job here?

function minNonNegative(numArray) {
  let min = Infinity;

  numArray.forEach(function(num) {
    if (num < 0) {
      return;
    } else if (num < min) {
      min = num
    }
  });
  return min;
}

console.log(minNonNegative([-3,2,5,-9]))

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The return INSIDE the forEach is to ignore the else which is then not even needed:

numArray.forEach(num => { if (num < 0) return; if (num < min) { min = num } });

You can use a filter and Math.min:

const minNonNegative = numArray => Math.min(...numArray.filter(num => num>=0))


console.log(minNonNegative([-3,2,5,-9]))

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda