Return Early Pattern for Functions Problem

Tell us what’s happening:
Hi. I’m having a hard time with this problem. I feel like the code should execute and have been stuck on this all day. Any ideas where I’m going south?

Your code so far


// Setup
function abTest(a, b) {
  // Only change code below this line
  if (a < 0 || b || 0) {
    return undefined;
  }
  
  
  // Only change code above this line

  return Math.round(Math.pow(Math.sqrt(a) + Math.sqrt(b), 2));
}

// Change values below to test your code
abTest(2,2);

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36.

So, this means a less than 0, right?
How do you write “b less than 0”?

1 Like

thanks. I saw that right after I hit submit. hahahaha