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
网友评论