JS——undefined、null

1、undefined == false   //返回false

2、null == false     //返回false

3、undefined == null    //返回true

4、undefined === null    //返回false

原文地址:https://www.cnblogs.com/wuqiuxue/p/8038731.html