0 votes
in JavaScript by
What does javascript use instead of == and !=?

a) It uses bitwise checking

b) It uses === and !== instead

c) It uses equals() and notequals() instead

d) It uses equalto()

1 Answer

0 votes
by
Answer:-  B

Reason:The subset does not include the comma operator, the bitwise operators, or the ++ and — operators. It also disallows == and != because of the type conversion they perform, requiring use of === and !== instead.
...