对于下面的代码,为什么更新了myObj的propB?为什么test.childObj没有自己的属性propB?varmyObj={propA:'',propB:[]}varfatherObj={childObj:null,init:function(){this.childObj=Object.create(myObj);this.childObj.propA='A';this.childObj.propB.push(2);}}vartest=Object.create(fatherObj);test.init();console.log(myObj.propB.length);con