面试题答案一键面试function combineData(...objects) { return objects.reduce((acc, obj) => ({...acc, ...obj }), {}); }