What you showed us is JSON objects representation.
In this case you have an array of objects, so if you do next:
>>ar=[{"Attribute1":"Apple","Attribute2":"jacob.nelson@cognizant.com"}]
[Object]
This says that you have one object in an array, then yoou have to get it:
>>obj=ar[0]
Object {Attribute1: "Apple", Attribute2: "jacob.nelson@cognizant.com"}
Then if you need to replace something in objects, you have to treat them like OBJECTS!
>>ar2=[{"Attribute1":"orange"}]
>>obj2=ar2[0]
>>obj1.Attribute1=obj2.Attribute1
And that's all!
TIP if you have many objects, loop over them:
>>objects_array=[
{"Attribute1":"Apple","Attribute2":"jacob.nelson@cognizant.com"},
{"Attribute1":"Cucumber","Attribute2":"asd@qwe.com"}
]
[Object, Object]
>>for obj in objects_array {
obj.Attribute1='Whatever'
}