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

106
Vistas
Continue function if returned function is not returning

I am trying to reduce cyclomatic complexity but this is a general query. if function b is not returning anything function a should continue to return 3

function a() {
  return b();
  return 3
}

function b() {
  if (false)
    return 2
}
alert(a())

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

0

More manually you could store the result of b() in a variable, check the variable, and conditionally return or continue. Though in this simplified version you could also just rely on the Nullish coalescing operator when returning.

For example:

function a() {
  return b() ?? 3;
}

function b() {
  if (false)
    return 2
}
alert(a())

Essentially the expression resolves to either the result of b() or, if that result is null or undefined, resolves to 3. Then the result of that overall expression is returned.

about 4 years ago · Juan Pablo Isaza Denunciar

0

That works with my test, "I used console.log not alert"

function a() {
  let val = b()
  return val == null ? 3 : val;
}

function b() {
  if (false) return 2;
  return null; // If anytings doesnt return that function we returns null 
}
alert(a());

Performance test for nullish operator or standart one line if https://jsbench.me/ool12lcckh

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