I'm trying to convert a JSON key value object to an Array, but I'm not sure how to get it in the format I need. What I have for the JSON is something similar to below:
{
"01": "yes",
"02": "yes",
"03": "no"
}
but I need an Array like the one below so I can iterate through it easily:
["01:yes","02:yes","03:no"]
or is it possible to iterate through this JSON object while accessing the keys and values easily?