我试图使用函数检查变量是否存在

时间:2016-11-25 06:51:57

标签: javascript

我正在尝试使用函数检查变量是否存在但不知何故这不起作用,有人可以帮助我,非常感谢!

// console returns false and is expected
if(typeof aaaaaaa !== 'undefined'){
  console.log(true);
}else{
  console.log(false);
}

=============================================

// console returns 'aaaaaaa is not defined', and stops my code
function checkExist(arg){
    if(typeof arg !== 'undefined'){
        console.log(true);
    }else{
        console.log(false);
    }
}
checkExist(aaaaaaa);

它与JavaScript check if variable exists (is defined/initialized)

完全不同

0 个答案:

没有答案