JS的undefined,null,NaN,false,0进行比较
特殊值进行比较NaN,undefined,null,false与自身相比,只有NaN==NaN是false;不等是true。然后两两相比,得出结论。> < >= <= == != === !==.注:连接运算+优先级高于比较运算符。做实验用的模板:notepad++中查找替换console.log("x> y 的结果是:"+(x> y ));console.log("x< y 的结果是:"+(x< y ));console.log("x



