Tell us what’s happening:
Hello all, can’t figure why this code isn’t being accepted.
Any help greatly appreciated.
Regards
Matt
Your code so far
function trueOrFalse(wasThatTrue) {
// Only change code below this line
if (wasThatTrue) { return "Yes, that was true"; }
return "No, that was false"; }
trueOrFalse(true);
trueOrFalse(false);
// Only change code above this line
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) 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: