Suppose I have this:
var names = [
{
"First": "Jim",
"Last": "Jones"
},
{
"First": "Mike",
"Last": "Smith"
},
{
"First": "Joe",
"Last": "Johnson"
}
]
And I now want to add a "Middle" field with a middle name to each object in that array. Can I do it simply? Push doesn't seem to exist in this scenario.