undefined and null
Jiangxin
Jiangxin 2018-06-26 10:35:19
0
2
1176

undefined == null is true, the values ​​compared are all 0,

undefined === null is false, because the data types are compared, is this the case?

Jiangxin
Jiangxin

reply all(1)
无忌哥哥

== means to compare values, such as a=1, b='1', then a==b is true. The three === must be congruent. Not only the array must be equal, but the data type must also be equal, then a ===b is false

  • reply Thanks
    Jiangxin author 2018-06-26 22:19:00
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template