Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Created March 7, 2016 10:12
Show Gist options
  • Save gskachkov/816498e0dedb0a18da6e to your computer and use it in GitHub Desktop.
Save gskachkov/816498e0dedb0a18da6e to your computer and use it in GitHub Desktop.
Eval in class
class A {
constructor () {
this.id = 'id-value';
}
}
class B extends A {
constructor () {
eval("super()");
}
};
var b = new B();
console.log(b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment