when working with frameworks(in this case Phaser.js) I like to use the console and look for possible properties of Objects with
Object.getOwnPropertyNames(myObject)
However, some properties wont show up in the console and I assume is due to not being "OwnPropertyNames" of the object. Is there a way to still get them to show in the console?
I´m basically looking for something like
Object.getAllPropertyNames(myObject)
Could someone help me out? I´m new to JS :)