Tell us what’s happening:
trueOrFalse(false)
should return “No, that was false”
I’ve looked at solutions and am still stumped as to what is wrong. It is still returning a string, leading me to believe I made a typo, however I copied it down to the character. What’s wrong??
Your code so far
function trueOrFalse(wasThatTrue) {
// Only change code below this line
if (wasThatTrue = true) {
return "Yes, that was true";
}
return "No, that was false";
// Only change code above this line
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36
.
Challenge: Use Conditional Logic with If Statements
Link to the challenge: