Get the method names from the class's prototype
class SampleClass { property = 100; sampleFn(){} } getMethodNames(SampleClass.prototype) /// return ['sampleFn'] Copy
class SampleClass { property = 100; sampleFn(){} } getMethodNames(SampleClass.prototype) /// return ['sampleFn']
-- list of method names
Get the method names from the class's prototype
Example