Конструктор Array не срабатывает так как ожидалось:
'use strict';
const RevercedArray = function(...args) {
Array.apply(this, args);
};
Object.setPrototypeOf(RevercedArray.prototype, Array.prototype);
const arr = new RevercedArray(1, 2, 3);
console.log(arr); // RevercedArray {}
UPD
Я хочу сделать что-то похожее на это:
const Rectangle = function(x, y, width, height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
};
Rectangle.prototype.area = function() {
return this.width * this.height;
};
const Square = function(x, y, length) {
Rectangle.call(this, x, y, length, length);
};
Object.setPrototypeOf(Square.prototype, Rectangle.prototype);
const sq = new Square(1, 2, 3);
console.log(sq); // Square { x: 1, y: 2, width: 3, height: 3 }