18. Comparison operators compare two values and evaluate down to a single Boolean value *
(1 Point)
=
==
or both
Answers
Answered by
0
Answer:
Equal to (===) — returns true if the value on the left is equal to the value on the right, otherwise it returns false.
Not equal to (!==) — returns true if the value on the left is not equal to the value on the right, otherwise it returns false.
Similar questions