To strictly compare the inequality of two operands without type coercion, use _______.

  • ==
  • ===
  • !=
  • !==
To strictly compare the inequality of two operands without type coercion in JavaScript, you should use the === operator. This operator checks both the value and the data type of the operands. In contrast, the == operator performs type coercion and may not provide the desired strict comparison.
Add your answer
Loading...