javascript 使用instanceof验证Object的构造函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用instanceof验证Object的构造函数相关的知识,希望对你有一定的参考价值。

let Bird = function(name, color) {
  this.name = name;
  this.color = color;
  this.numLegs = 2;
}

let crow = new Bird("Alexis", "black");

crow instanceof Bird; // => true

以上是关于javascript 使用instanceof验证Object的构造函数的主要内容,如果未能解决你的问题,请参考以下文章

在 JavaScript 中使用 instanceof 运算符是性能问题吗? [关闭]

JavaScript instanceof 运算符深入剖析

JavaScript23_instanceof和hasOwn

javascript教程50:认识instanceof 与 原型链

javascript中原型链与instanceof 原理

JavaScript中“typeof”运算符与“instanceof”运算符的差异