I have a json like this:
{
"name": "ehsan",
"family": "shirzadi",
"age": 20,
"address": "...",
"tel": "..."
}
I have another json like this:
{
"name": "ali",
"family": "rezayee",
}
Is there away to update my first json's name and family with the second json without using a loop and assigning one by one?