if('变量名'){
}
//这样判断变量存在未true,不存在为false;
如果是判断有没有值:
if(变量名 == '' || 变量名 == null){
}
用 typeof 就行比如,你要判断变量abc是不是存在,那么就用
if(typeof abc === 'undefined'){
console.log("不存在");//打印 不存在
}
当然如果你声明了变量没有赋值,也能进if,比如:
var bcd
if(typeof bcd=== 'undefined'){
console.log("bcd不存在")//打印 bcd不存在
}