map (function(person) { // create a new object to store full name. var newObj = {}; newObj["fullName"] = person.firstName + " " + person.lastName; // return our ...
確定! 回上一頁