标签: javascript inheritance ecmascript-6 ecmascript-7
我正在做一些关于继承的JS复习。 首先说我有这个:
const a = function(x) { this.x = x; }; const b = function(x, y) { this.y = y; };
最后,如果我具有以下内容,那我将得到:
const newB = new b('x', 'y'); newB.getX(); // x newB.getY(); // y
我该怎么办?