继承

作者: 弹指一挥间_e5a3 | 来源:发表于2020-09-18 21:23 被阅读0次
    function Car (color){
      this.color = color
    }
    Car.prototype.sale = function(){
      console.log(this.color)
    }
    
    function BMW(color){
      Car.call(this,color)
    }
    var __proto = Object.create(Car.prototype)
    __proto.constructor = BMW
    BMW.prototype= __proto
    
    
    image.png

    相关文章

      网友评论

          本文标题:继承

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