typeof typeof 是一元运算符,返回值是字符串,且只能是number,string,boolean,object,function,undefined typeof用来判断一个值是否存在 if(typeof(a)!=='undefined'){ alert('yes') } typeof(window) //object 如果用if(a)判断,就会因为a未定义而报错 对于Array,Null,typeof一律返回object instanceof instanceof是双元运算符,用来…