小编典典

typeof 和 instanceof 有什么区别,什么时候应该使用另一个?

all

在我的特殊情况下:

callback instanceof Function

要么

typeof callback == "function"

有没有关系,有什么区别?

附加资源:

JavaScript-Garden typeof vs instanceof


阅读 110

收藏
2022-03-15

共1个答案

小编典典

用于instanceof自定义类型:

var ClassFirst = function () {};
var ClassSecond = function () {};
var instance = new ClassFirst();
typeof instance; // object
typeof instance == 'ClassFirst'; // false
instance instanceof Object; // true
instance instanceof ClassFirst; // true
instance instanceof ClassSecond; // false

用于typeof简单的内置类型:

'example string' instanceof String; // false
typeof 'example string' == 'string'; // true

'example string' instanceof Object; // false
typeof 'example string' == 'object'; // false

true instanceof Boolean; // false
typeof true == 'boolean'; // true

99.99 instanceof Number; // false
typeof 99.99 == 'number'; // true

function() {} instanceof Function; // true
typeof function() {} == 'function'; // true

用于instanceof复杂的内置类型:

/regularexpression/ instanceof RegExp; // true
typeof /regularexpression/; // object

[] instanceof Array; // true
typeof []; //object

{} instanceof Object; // true
typeof {}; // object

最后一个有点棘手:

typeof null; // object
2022-03-15