有一些对象Graph
。它有一个属性width
和一个从属height
。如何更改宽度值以使高度随之变化?
function Graph(width){
this.width=width
this.height=0.5*this.width
}
Graph.prototype.changeWidth=function(){
this.width*=2
}
let graph=new Graph(10)
graph.changeWidh()
console.log(graph)
//→Graph{width:20, height:5}
/*Должно быть:
Graph{width:20, height:10}*/