- A) == equals
- B) === equals
- C) Cannot Compare
- D) Both A and B
The right answer to the question is option D, which states that both "==" and "===" are comparison operators. The difference between both the operators is that == is a type-conversion based comparison, while === is a comparison without any type conversion.
Comments (0)