我正在尝试使用函数检查变量是否存在但不知何故这不起作用,有人可以帮助我,非常感谢!
// 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)
完全不同