JSFiddle - React, Tailwind, and code Playground
by pdfjs
JavaScript
class N {
t() { console.log(1); }
}
class S extends N {
s() { this.t(); }
}
let i = new S();
i.s();
by pdfjs
class N {
t() { console.log(1); }
}
class S extends N {
s() { this.t(); }
}
let i = new S();
i.s();