What is the difference between `==` and `===` in JavaScript?
-
A
`==` checks value only; `===` checks value AND type
-
B
`==` is faster; `===` is slower but more accurate
-
C
`==` works only on primitives; `===` works on all types
-
D
There is no difference โ they produce identical results