Example:
class Parent { funcA() {this.funcB();} funcB() {console.log(\'FuncB in Parent\');} } class Child extends Parent { funcA() {super.funcA();}