Is there any library for reflection in javascript?
I need to list all global variables, functions or list all variables of an object. I’m dealing with a tool which allows javascript and html, but there is no any debugger there.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s probably easier than you’re expecting. Take a look at http://www.codeproject.com/Articles/24549/How-to-Inspect-a-JavaScript-Object which shows the
for(member in object) { }syntax