function Rectangle(w, h) { var width = w; var height = h; this.getWidth = function() { return width; }; this.getHeight = function() { return height; }; this.setWidth = function(value) { if(value < 0) { throw '길이는 음수일 수 없습니다.'; } else { width = value; } }; this.setHeight = function(value) { if(value < 0) { throw '높이는 음수일 수 없습니다.'; } else { height = value; } }; } Rectangle.prototype.getArea = func..