let hs={
    show(){
        console.log("first");
    },
    render(){
        console.log("render");
    }
};
console.log(hs);
// Object.prototype.show=function(){
//     console.log("111");
// };


hs.__proto__.show=function(){
    console.log("111");
};
hs.show();

// Object.prototype.show();

 

posted on 2022-01-25 23:27  weakup  阅读(35)  评论(0编辑  收藏  举报