如何判斷一個物件是否在指定物件的原型鏈中

antzone發表於2017-04-05

在實際應用中,可能需要判斷一個物件是否在一個物件的原型鏈中。

下面就通過程式碼例項介紹一下如何實現此功能。

程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
function Antzone(){
  this.webName="螞蟻部落";
  this.url="softwhy.com";
  this.age=3;
}
var obj={
  address:"青島市南區"
}
Antzone.prototype=obj;
var antzone=new Antzone();
console.log(obj.isPrototypeOf(antzone))

isPrototypeOf()方法可以參閱isPrototypeOf()一章節。


相關文章