Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created November 20, 2017 20:46
Show Gist options
  • Save gskachkov/e81a9d76391ffe06a29932bce1292272 to your computer and use it in GitHub Desktop.
Save gskachkov/e81a9d76391ffe06a29932bce1292272 to your computer and use it in GitHub Desktop.
class A {
x = 0;
constructor() {}
}
class B extends A {
y = 10;
constructor() {
let t = _ => super(); t();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment