1.typeof 首先来看typeof的测试结果 1 //1.typeof 判定 非构造函数 数据类型 2 var a = '123'; //typeof a === string 3 var b = 123; //typeof b === number 4 var c = true; //typeof c === boolean 5 var d = function(){};//typeof d === function 6 var e = {}; //typeof e === object
java中的instanceof=======>二元运算符 用法: result = object instanceof class 参数: result 是boolean类型 object 是对象 class 是 已定义的类 解释:如果object是class的一个实例,则instanceof 运算符返回true,反之,返回false