17.
Which of the following is a comparison operator in JavaScript?
{}
=
==
<>
Correct: C
The correct answer is A3: ==, which is the equality operator in JavaScript. It is used to compare two values and returns true if they are equal, false otherwise. The other options are incorrect: + is the addition operator, = is the assignment operator, <> is not a valid comparison operator in JavaScript. The correct operator for "not equal to" is !=