I have a class that extends another class. I need to run additional code in the constructor of my child class. How do I do this?
//MyClass.class
//This is what i want to do
public class MyClass extends BaseClass {
    constructor() {
        super(); // EDIT (thanks)
        // stuff?
    }
}
Please help.
 
     
     
    