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.

Related questions

0 votes
asked Jun 8, 2022 in JavaScript by sharadyadav1986
0 votes
asked Dec 2, 2022 in JavaScript by john ganales
...