Question:What is the output of 5 != 5?
A true B false C null D error
+ AnswerB
+ ExplanationThe != operator checks if two values are not equal; here they are equal.
+ Report