巴扎黑2017-04-10 16:32:26
var test1=1;
var test2='z';
var test3={a:'b'};
console.log(typeof test1);
console.log(typeof test2);
console.log(typeof test3);
高洛峰2017-04-10 16:32:26
var string='hello world';
string instanceof String;
return true;
return false;
....
阿神2017-04-10 16:32:26
typeof
只会返回基本类型,或是“object”instanceof
只是判断一个对象是不是某种类型的。
可以用 Object.getPrototypeOf(对象).constructor.name
或者直接对象.constructor.name
(如果对象没有定义新的contructor
属性)。
当然,这对于用匿名函数创建的对象就不能用了,可喜的是DOM元素的对象不不属于这种情况。