I have a json object, a string, that contains some properties and their values. Say I never know what comes in my json object, how can I loop though it and get what properties it contains? For example:
{ "aaaa": 1, "bbbb": "qwerty", "ccc": 21.22 }
How do I collect aaa, bbb and ccc? Once again, I don't want their values, I just want the name of the properties.