This question already has an answer here:
- Get parent class name from child with ES6? 4 answers
var A = class A {};
var B = class B extends A {};
var C = class C extends B {};
Given the code above assuming I only have access to class 'C', how can I know what are its ancestor classes? The correct answer of course is B then A, but how can my code tell me that?