What is the super() keyword?
id:37When using extends to extend the functionality of a class, if we exclude the constructor the derived class will invoke the constructor of its parent class. If we intend to add unique properties to the derived class, we can achieve this by creating its own constructor and invoking super() to inherit the properties of the parent class.