I have this json code:
{
"data": [
{
"name": "John",
"id": "11"
},
{
"name": "Max",
"id": "22"
},
{
"name": "Martin",
"id": "33"
},
{
"name": "Adrian",
"id": "44"
}
]
}
Now, I need to print all names and ids in this way:
John 11
Max 22
Martin 33
Adrian 44
What is the simplest way to do that ?
Like this:
Output: