zl程序教程

您现在的位置是:首页 >  其它

当前栏目

new 做了什么

什么 New
2023-09-11 14:17:23 时间
    var a=function(){
      this.che1 = function () { console.log(1) }
      this.che2 = function () { console.log(2) }
      this.che3=function(){console.log(3)}
    }
    var b= new a();
    var c={};
    
    c.__proto__ = a.prototype;
    a.call(c);

    console.log(b)
    console.log(c)