LLD - Design — Chess Game
Identify the error in this piece hierarchy code snippet:
class Piece {
constructor(type, position) {
this.type = type;
this.position = position;
}
}
class Queen extends Piece {
constructor(position) {
this.type = 'Queen';
this.position = position;
}
}