美文网首页
JS实现继承

JS实现继承

作者: 贪恋冬天的幸福 | 来源:发表于2019-10-29 11:16 被阅读0次
    function Parent () {
      this.name = 'Parent';
      this.play = [1, 2, 3];
    }
    
    function Child () {
      Parent.call(this);
      this.type = 'Child';
    }
    
    Child.prototype = new Parent();
    let s = new Child();
    let s1 = new Child();
    s.play.push(4);
    console.log(s.play, s1.play);
    
    s 实例对象
    s1 实例对象

    相关文章

      网友评论

          本文标题:JS实现继承

          本文链接:https://www.haomeiwen.com/subject/toswvctx.html