0 votes
in ECMAScript by

Below is the extends class code

class Player extends Student {

constructor(roll, name) {

super(roll, name);

this.Player = true;

}

};

Here, super(roll,name); refers to the

(1)None of the options

(2)Constructor of the Child class

(3)Constructor of the Parent Class

(4)Constructor of both the classes

1 Answer

0 votes
by
Constructor of the Parent Class

Related questions

0 votes
asked Apr 9, 2021 in JAVA by Robindeniel
+2 votes
asked May 31, 2020 in JAVA by SakshiSharma
...