Looking for some help with this code snippet:
class example {b(){}}
for(const b in example.prototype)
console.log(b)
Curious as to why the methods inside example.prototype are not logging. I've debugged it and can see them there.
This is for a project using nodejs.