Basic JavaScript - Use the Conditional (Ternary) Operator

Tell us what’s happening:
Describe your issue in detail here.
it keeps saying “checkEqual(1, 1) should return the string Equal”.

Your code so far

function checkEqual(a, b) {
return 1 > 2 ? "Equal" : "Not Equal";
}

console.log(checkEqual(1, 2));

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Use the Conditional (Ternary) Operator

Link to the challenge:

1 Like

No matter what argument values are passed to your function, it only ever will check if 1 is less than 2. Since 1 > 2 evaluates to false, your function will only ever return "Not Equal". You need to incorporate the parameters a, and b into your solution. Also, you are supposed to be checking if the numbers are equal. What operator checks for equality?

2 Likes

Can you teach me more please. I’m new to all this

function checkEqual(a, b) {

return 1 === 2 ? “Equal” : “Not Equal”;

}

console.log(checkEqual(1, 2));

it still says " checkEqual(1, 1) should return the string Equal".

You have to use the parameters (a and b) instead of numbers

1 Like