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

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

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.