摘要:
function User(name){ this.name=name; } function createByObject(obj,...args){ const constructor= Object.getPrototypeOf(obj).constructor; return new con 阅读全文
摘要:
function User(name){ this.name=name; } //对应左边的 // 此方法是挂上show // User.prototype.show=function(){ // console.log(this.name); // } //对应右边的 //此方法是是重新创建了一个 阅读全文
摘要:
let hd={name:"hd"}; let parent={ name:"parent", show(){ console.log("parent method:"+this.name) } } Object.setPrototypeOf(hd,parent); hd.show(); paren 阅读全文