Basic JavaScript - Use Conditional Logic with If Statements

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

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



  // Only change code above this line

}

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 11; Infinix X6816) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.98 Mobile Safari/537.36

Challenge: Basic JavaScript - Use Conditional Logic with If Statements

Link to the challenge:

This is not a comparison operator.

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