Hi, I am looking query the JSON data based on some where conditions for ex. list the person names whose cell no is 777-777-7777.
pl let me know what are query capabilities in JSON.
var json = [{ "name": "senthil",
"Phoneno": [{ "Home": "111-111-1111" },
{ "Cell": "222-222-2222" },
{ "Office": "333-333-3333" }
],
"City": "Hartford"
},
{ "name": "kumar",
"Phoneno": [{ "Home": "444-555-6666" },
{ "Cell": "777-777-7777" },
{ "Office": "888-888-8888" }
],
"City": "Austin"
},
];