Is there a way to print all methods of an object in javascript?
|
feedback
|
|
Sure:
Using it:
| |||||
feedback
|
|
Here's a post on JS reflection. It should do what you're looking for. | |||
|
feedback
|
|
Take a gander at this code:-
The getMethod function returns the set of methods along with whether the method is one that has been inherited from a prototype. Note that if you intend to use this on objects that are supplied from the context such as browser/DOM object then it won't work IE. | |||
|
feedback
|
|
From here: Example 1: This example writes out all the properties of the "navigator" object, plus their values:
Just replace 'navigator' with whatever object you are interested in and you should be good to go. As mentioned by Anthony in the comments section - This returns all attributes not just methods as the question asked for. Oops! That'll teach me to try and answer a question in a language I don't know. Still, I think the code is useful - just not what was required. | ||||
feedback
|
|
Since methods in JavaScript are just properties that are functions, the for..in loop will enumerate them with an exception - it won't enumerate built-in methods. As far as I know, there is no way to enumerate built-in methods. And you can't declare your own methods or properties on an object that aren't enumerable this way. | |||
|
feedback
|