Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

105
Views
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 answers
Answer question

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!