+ 1
null == undefined , null === undefined, which one will return true in JavaScript ?
2 Respuestas
+ 7
The first one (null == undefined).
If you want to know why Strict Equality Comparison (===) works different from Abstract Equality Comparison (==), you should review this article:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness
0
null == undefined.