I am not getting how trueOrFalse(true) should return "Yes, that was true"

Tell us what’s happening:

Your code so far


function trueOrFalse(wasThatTrue) {
// Only change code below this line
if(wasThatTrue){
  return "Yes that was true";
}
return "Yes that was false";

// Only change code above this line

}
trueOrFalse(true);
trueOrFalse(false);

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36.

Challenge: Use Conditional Logic with If Statements

Link to the challenge:

Do you mean that you don’t understand the logic behind this function or do you think it should work but it doesn’t?

If the latter, then notice that your function should return either "Yes, that was true" or "No, that was false".

yes i had solved my issue regarding the error. Thanks for helping.