Which operator is used to check both value and type in javascript?
#
==
===
=
Answers
Answered by
0
Explanation:
In JavaScript you can use two different operators to check for object equality. They are == and === . They basically do the same thing, but there is a big difference between the two. === will check for equality of two values.
Similar questions