var json={"america":"1234","india:"5678","britain":"789"}
This is a sample json object (there are thousands of key-value pairs in the actual json object). How do I retrieve the key from this object if I pass the value json["1234"]? The expected result is that I should be able to retrieve the key "america".