I have the following, simple JSON structure:
{
"a": {
"value1": "w",
"value2": "x"
},
"b": {
"value1": "w",
"value2": "x"
},
"c": {
"value1": "w",
"value2": "x"
}
}
...the desired output is as follows:
{
{
"value1": "w",
"value2": "x"
},
{
"value1": "w",
"value2": "x"
},
{
"value1": "w",
"value2": "x"
}
}
It would have to be plain Javascript (no jQuery). Thanks in advance.