typeof 操作符 instanceof 操作符 hasOwnProperty()方法 isPrototypeOf()方法 1.typeof 用于获取变量的类型,一般只返回以下几个值:string,number,boolean,object,function,undefined. typeof作用于引用类型的时候,无论是什么类型的对象,都返回“object”. alert(typeof false);//boolean alert();//number alert(typeof "hello…