for example: [{"name":"max", "number":"2222"}, {"name":"lisa", "number":"3333"}]
I tried repeat for each element as well as repeat for each key but I cannot find any other way to loop through the JSON objects besides manually splitting the array by "}," to get individual JSON objects.
Is there a way to loop through the array to get one JSON object example: {"name":"max", "number":"2222"} for every loop without splitting the array string manually?
Thank you in advance.
