正如有人所说,实例内部原型是到构造函数原型的链接,因此按照这个
function foo(){}
x=new foo()
foo.prototype={};
x instanceof foo//false (if instance internal prototype is a link to constructor prototype than it should have been replaced with replacing prototype) but
x.constructor==foo//true why according to the above definition if internal prototype is a link to constructor prototype it should have been updated