var seattlers = customers.filter(function (c) { return c.city == "Seattle"; }).map(function (c) { return { name: c.name, age: c.age }; });