The comparison operator _______ checks for inequality, considering type coercion.

  • ==
  • ===
  • !=
  • !==
The comparison operator '!==' checks for inequality while also considering type coercion. It returns true if the values are not equal or if their types are not the same. For example, 5 !== "5" would evaluate to true because the number 5 is not equal to the string "5."
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *