2

I have a object that returned from JsonResult
I want to get all properties of object in client, like C# Reflection

1 Answer 1

1
for(var property in object){
 if(object.hasOwnProperty(property)){//prevents from getting inherent properties
   console.log(object[property])
 }
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.