Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
class Test { constructor() { const prototype_of_this = Object.getPrototypeOf(this); console.log(Object.getOwnPropertyNames(prototype_of_this)); } f1(){} f2(){} f3(){} static f4(){} } new Test(); /* run: [ "constructor" , "f1" , "f2" , "f3" ] */