Here is my JSON Array.
rows : [
{
"id":1,
"first_name":"William",
"last_name":"Elliott",
"email":"[email protected]",
"country":"Argentina",
"ip_address":"247.180.226.89",
"notificationType": [
{
"type": "update",
"text": "New Update"
"selected":null
},
{
"type": "user",
"text": "New User"
"selected":null
}
]
}
]
I need to update this array.For example let's take care of notificationType data.
I want to update "selected":null value to "selected":true.
How can I do this?