被测试一回

null == undefined    //true

null === undefined  //false

console("5"+"1")   //51

console.log(5 + "1")  //51

console.log("5" - "1")  //4

下面返回的是什么

var obj = {
a: undefined,
b: function () {}
};

JSON.stringify(obj);

返回:{}

原文地址:https://www.cnblogs.com/namehou/p/10499796.html