Can anyone help me on on this? I have JSON object as below
{
"app_Welcome": "Welcome",
"app_Notifications": "Notifications",
"app_New": "New"
}
and I want to convert it to to an array of object
[
{"app_Welcome": "Welcome"},
{"app_Notifications": "Notifications"},
{"app_New": "New"}
]
Thanks!