10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
class Child extends Parent {
|
|
constructor() {
|
|
super();
|
|
}
|
|
|
|
scopedFunctionWithThis = () => {
|
|
this.name = {};
|
|
};
|
|
}
|