I have a object array in javascript.
Example:
objArr = [{"FirstName":"John","LastName":"Doe","Age":35},{"FirstName":"Jane","LastName":"Doe","Age":32}]
I want to create an object array like this
newObjArr=[{"Name":"John Doe","Age":35},{"Name":"Jane Doe","Age":32}]
How should I do this?