json returns the value and I store in variable. For example
var person = {
Name:"Shree",
Address: "Ratopul",
Profession: "Programmer",
Address: [
{
District: "abc",
Ward: "Tel",
Tel:"235"
},
{
District: "abc1",
Ward: "Tel",
Tel:"235"
},
{
District: "abc2",
Ward: "Tel",
Tel: "235"
}
]
};
I got a address through.
var address=person.Address;
But I want to catch a particular element of address. How is it possible. I don't have any idea. Please help.
addressforDistrictwhichTelis235