8 lines
77 B
JavaScript
8 lines
77 B
JavaScript
class Foo extends Bar {
|
|
bar = "foo";
|
|
|
|
constructor() {
|
|
super();
|
|
}
|
|
}
|