Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

介绍 instanceof 原理,并手动实现 #709

Open
lgwebdream opened this issue Jul 6, 2020 · 2 comments
Open

介绍 instanceof 原理,并手动实现 #709

lgwebdream opened this issue Jul 6, 2020 · 2 comments
Labels
JavaScript teach_tag 编程题 teach_tag

Comments

@lgwebdream
Copy link
Owner

No description provided.

@lgwebdream lgwebdream added JavaScript teach_tag 编程题 teach_tag labels Jul 6, 2020
@lgwebdream
Copy link
Owner Author

扫描下方二维码,获取答案以及详细解析,同时可解锁800+道前端面试题。

@GolderBrother
Copy link

function myInstanceOf(L, R){
  const prototype = R.prototype;
  let proto = Object.getPrototypeOf(L);
  while(true) {
    // 说明已经找到原型链最顶层
    if(proto === null) return false;
    // 构造函数的原型(R.prototype)存在于实例的原型链上(L.__proto__)
    if(proto === prototype) return true;
    // 递归原型链向上查找
    proto = Object.getPrototypeOf(proto);
  }
}
function C() {}

function D() {}

const o = new C();
console.log(myInstanceOf(o, C)); // true
console.log(myInstanceOf(o, D)); // false

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
JavaScript teach_tag 编程题 teach_tag
Projects
None yet
Development

No branches or pull requests

2 participants