class Flyer { constructor(fname, speed) { this.fname = fname; this.speed = speed; } fly(){ console.log(this.fname,this.speed) }; } class Plane extends Flyer{ constructor(fname,speed,score) { super(fname,speed); this.score=score; } getScore(){ console…