JS 中 typeof 和 instanceof 区别
JavaScript 中 typeof 和 instanceof 常用来判断一个变量是否为空,或者是什么类型的。但它们之间还是有区别的.
操作方法
- 01
instanceof a instanceof b?alert("true"):alert("false"); //a是b的实例?真:假 instanceof 用于判断一个动态的变量是否是某个对象的实例。 var a=new Array();alert(a instanceof Array); 会返回 true,同时 alert(a instanceof Object) 也会返回 true;这是因为 Array 是 object 的子类。再如:function test(){};var a=new test();alert(a instanceof test) 会返回object 测试 var a=new Array();if (a instanceof Object) alert('Y');else alert('N'); 得'Y' 但 if (window instanceof Object) alert('Y');else alert('N'); 得'N' 所以,这里的 instanceof 测试的 object 是指 js 语法中的 object,不是指 dom 模型对象。 使用 typeof 会有些区别 alert(typeof(window)) 会得 object
- 02
typeof typeof 返回的是一个基本的静态的数据类型,typeof 一般只能返回如下几个结果: number,boolean,string,function,object,undefined。我 们可以使用 typeof 来获取一个变量是否存在,如 if(typeof a!="undefined"){alert("ok")},而不要去使用 if(a) 因为如果 a 不存在(未声明)则会出错,对于 Array,Null 等特殊对象使用 typeof 一律返回 object,这正是 typeof 的局限性。