Is there a way to convert a JSON key value object into an Array that is easier to iterate through? The JSON I have looks something like this:
{
"01": "yes",
"02": "yes",
"03": "no"
}
However, I need the Array format below in order to easily iterate through it:
["01:yes","02:yes","03:no"]
Alternatively, is there a way to iterate through this JSON object while being able to access the keys and values without any complications?