Is there a way to uncover all available methods and properties for an element object using only vanilla JavaScript, excluding jQuery? For instance, if I am working with the body object - document.getElementByTagName('body')[0]
How can I retrieve a comprehensive list of accessible methods? What about properties? Apart from .click() and .setAttribute, what other options are at my disposal?
What steps should I take to discover this information using the Chrome console?