我想知道如何检查一个空变量,这是一个代码片段:
var test = {};
if (test === null){
console.log("TRUE!");
}
else{
console.log("False :(");
}
if (test === undefined){
console.log("TRUE!");
}
else{
console.log("False :(");
}
对于这两个条件,结果都为False,如何与非初始化/空变量进行比较?