Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What does javascript use instead of == and !=?
Home
JavaScript
What does javascript use instead of == and !=?
0
votes
asked
Oct 10, 2022
in
JavaScript
by
SakshiSharma
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()
javascript
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 10, 2022
by
SakshiSharma
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.
...