首页 > 代码库 > javascript学习笔记---ECMAScript-判断变量类型
javascript学习笔记---ECMAScript-判断变量类型
判断类型之前,先要清楚有哪些类型。
(理理思路:程序由数据和方法构成,数据由简单数据和复杂数据构成)
即类型有:
数据(简单数据:boolean,string,num,undefined,null。复杂数据:object),
方法(function)
万能的typeof,神一样的方法
typeof(1);// num
typeof("hello");// string
typeof(false);// boolean
var vFlag;
typeof(vFlag);// undefined
typeof(unVarFlag);// undefined
var oObject = new object();
typeof(oObject);// object
var oObject1 = new object1();
typeof(oObject1);// object
var fnTemp = function
FunTemp();
typeof(fnTemp);// function
只能区分num,boolean,string,function
不能区分未声明的变量和声明但未初始化的变量(红色字体)
区分方法:(obj ===
null
) ?
"null"
:
typeof
(obj);
不能区分不同的对象名(暗黄色字体)
区分方法:
obj = new Cat();
alert(obj.constructor == Cat); //true
或者obj.instanceof(Cat); //true
obj1 = new Dog();
alert(obj1.constructor == Dog); //true
或者obj1.instanceof(Dog); //true