1 .null 和 undefined 用== ,返回true
2 .null 和 undefined 用=== ,返回false
原因是null是null数据类型,undefined是undefined数据类型,而===是全相等,故返回false